Skip to content

Commit 27c49df

Browse files
committed
Fixed issues in a number of maps.
1 parent 92303dd commit 27c49df

19 files changed

+419
-357
lines changed

constant_contact/constant_contact_v2.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"path": "/{{ parameters.username }}/contacts"
4343
},
4444
"headers": {
45-
"Content-Type": "{{ headers.Content-Type }}"
45+
"Content-Type": "{{ headers['Content-Type'] }}"
4646
}
4747
}
4848
},
@@ -61,7 +61,7 @@
6161
"path": "/{{ parameters.username }}/contacts/{{ parameters.contact_id }}"
6262
},
6363
"headers": {
64-
"Content-Type": "{{ headers.Content-Type }}"
64+
"Content-Type": "{{ headers['Content-Type'] }}"
6565
}
6666
},
6767
"DELETE": {
@@ -96,7 +96,7 @@
9696
"path": "/{{ parameters.username }}/lists"
9797
},
9898
"headers": {
99-
"Content-Type": "{{ headers.Content-Type }}"
99+
"Content-Type": "{{ headers['Content-Type'] }}"
100100
}
101101
}
102102
},
@@ -115,7 +115,7 @@
115115
"path": "/{{ parameters.username }}/lists/{{ parameters.list_id }}"
116116
},
117117
"headers": {
118-
"Content-Type": "{{ headers.Content-Type }}"
118+
"Content-Type": "{{ headers['Content-Type'] }}"
119119
}
120120
},
121121
"DELETE": {
@@ -156,7 +156,7 @@
156156
"path": "/{{ parameters.username }}/campaigns"
157157
},
158158
"headers": {
159-
"Content-Type": "{{ headers.Content-Type }}"
159+
"Content-Type": "{{ headers['Content-Type'] }}"
160160
}
161161
}
162162
},
@@ -175,7 +175,7 @@
175175
"path": "/{{ parameters.username }}/campaigns/{{ parameters.campaign_id }}"
176176
},
177177
"headers": {
178-
"Content-Type": "{{ headers.Content-Type }}"
178+
"Content-Type": "{{ headers['Content-Type'] }}"
179179
}
180180
},
181181
"DELETE": {
@@ -210,7 +210,7 @@
210210
"path": "/{{ parameters.username }}/events"
211211
},
212212
"headers": {
213-
"Content-Type": "{{ headers.Content-Type }}"
213+
"Content-Type": "{{ headers['Content-Type'] }}"
214214
}
215215
}
216216
},
@@ -274,7 +274,7 @@
274274
"path": "/{{ parameters.username }}/events/{{ parameters.event_id }}/registrants/{{ parameters.registrant_id }}/attendancestatus"
275275
},
276276
"headers": {
277-
"Content-Type": "{{ headers.Content-Type }}"
277+
"Content-Type": "{{ headers['Content-Type'] }}"
278278
}
279279
}
280280
},
@@ -293,7 +293,7 @@
293293
"path": "/{{ parameters.username }}/events/{{ parameters.event_id }}/registrants/{{ parameters.registrant_id }}/paymentstatus"
294294
},
295295
"headers": {
296-
"Content-Type": "{{ headers.Content-Type }}"
296+
"Content-Type": "{{ headers['Content-Type'] }}"
297297
}
298298
}
299299
},
@@ -349,7 +349,7 @@
349349
},
350350
"headers": {
351351
"Accept": "{{ headers.Accept }}",
352-
"Content-Type": "{{ headers.Content-Type }}"
352+
"Content-Type": "{{ headers['Content-Type'] }}"
353353
}
354354
}
355355
},
@@ -362,7 +362,7 @@
362362
},
363363
"headers": {
364364
"Accept": "{{ headers.Accept }}",
365-
"Content-Type": "{{ headers.Content-Type }}"
365+
"Content-Type": "{{ headers['Content-Type'] }}"
366366
}
367367
},
368368
"DELETE": {
@@ -382,7 +382,7 @@
382382
},
383383
"headers": {
384384
"Accept": "{{ headers.Accept }}",
385-
"Content-Type": "{{ headers.Content-Type }}"
385+
"Content-Type": "{{ headers['Content-Type'] }}"
386386
}
387387
},
388388
"DELETE": {

etsy/etsy_v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1788,7 +1788,7 @@
17881788
}
17891789
}
17901790
},
1791-
"": {
1791+
"Root": {
17921792
"GET": {
17931793
"method": "GET",
17941794
"route": {

flickr/flickr_v1.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@
7777
}
7878
}
7979
},
80-
"Rest?method=flickr": {
80+
"Rest": {
8181
"GET": {
8282
"method": "GET",
8383
"route": {
8484
"data": "",
85-
"path": "/rest/?method=flickr.urls.lookupUser"
85+
"path": "/rest"
8686
},
8787
"parameters": {
8888
"api_key": {
@@ -92,6 +92,9 @@
9292
"format": {
9393
"value": "{{ parameters.format }}"
9494
},
95+
"method": {
96+
"value": "{{ parameters.method }}"
97+
},
9598
"url": {
9699
"value": "{{ parameters.url }}",
97100
"required": true

foursquare/foursquare_v2.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@
427427
}
428428
},
429429
"headers": {
430-
"Content-Type": "{{ headers.Content-Type }}",
430+
"Content-Type": "{{ headers['Content-Type'] }}",
431431
"photo": "{{ headers.photo }}"
432432
}
433433
}
@@ -1833,7 +1833,7 @@
18331833
}
18341834
},
18351835
"headers": {
1836-
"Content-Type": "{{ headers.Content-Type }}",
1836+
"Content-Type": "{{ headers['Content-Type'] }}",
18371837
"image": "{{ headers.image }}"
18381838
}
18391839
}

0 commit comments

Comments
 (0)