webflow-api 3.2.1 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mock/definition/__package__.yml +20 -20
- package/.mock/definition/accessGroups.yml +12 -5
- package/.mock/definition/assets.yml +7 -4
- package/.mock/definition/collections/items.yml +14 -16
- package/.mock/definition/collections.yml +3 -0
- package/.mock/definition/comments.yml +1 -0
- package/.mock/definition/components.yml +16 -12
- package/.mock/definition/forms.yml +15 -88
- package/.mock/definition/items.yml +1 -0
- package/.mock/definition/orders.yml +82 -4
- package/.mock/definition/pages.yml +17 -8
- package/.mock/definition/products.yml +4 -4
- package/.mock/definition/scripts.yml +5 -1
- package/.mock/definition/sites/activityLogs.yml +8 -4
- package/.mock/definition/sites/comments.yml +14 -12
- package/.mock/definition/sites/forms.yml +316 -0
- package/.mock/definition/sites/scripts.yml +5 -4
- package/.mock/definition/sites.yml +24 -0
- package/.mock/definition/users.yml +66 -14
- package/.mock/definition/webhooks.yml +4 -0
- package/.mock/definition/workspaces/auditLogs.yml +4 -4
- package/.mock/fern.config.json +1 -1
- package/Client.js +2 -2
- package/LICENSE +21 -0
- package/api/resources/accessGroups/client/Client.d.ts +4 -2
- package/api/resources/accessGroups/client/Client.js +4 -2
- package/api/resources/accessGroups/client/requests/AccessGroupsListRequest.d.ts +2 -2
- package/api/resources/assets/client/Client.d.ts +2 -2
- package/api/resources/assets/client/Client.js +2 -2
- package/api/resources/assets/client/requests/AssetsListRequest.d.ts +2 -2
- package/api/resources/collections/resources/items/client/Client.d.ts +10 -12
- package/api/resources/collections/resources/items/client/Client.js +10 -12
- package/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +2 -2
- package/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +2 -2
- package/api/resources/components/client/Client.d.ts +6 -6
- package/api/resources/components/client/Client.js +6 -6
- package/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +2 -2
- package/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +2 -2
- package/api/resources/components/client/requests/ComponentsListRequest.d.ts +2 -2
- package/api/resources/forms/client/Client.d.ts +4 -31
- package/api/resources/forms/client/Client.js +4 -131
- package/api/resources/forms/client/requests/FormsListRequest.d.ts +2 -2
- package/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +2 -2
- package/api/resources/forms/client/requests/index.d.ts +0 -1
- package/api/resources/orders/client/Client.d.ts +2 -2
- package/api/resources/orders/client/Client.js +2 -2
- package/api/resources/orders/client/requests/OrdersListRequest.d.ts +2 -2
- package/api/resources/pages/client/Client.d.ts +4 -4
- package/api/resources/pages/client/Client.js +4 -4
- package/api/resources/pages/client/requests/PagesGetContentRequest.d.ts +2 -2
- package/api/resources/pages/client/requests/PagesListRequest.d.ts +2 -2
- package/api/resources/products/client/Client.d.ts +2 -2
- package/api/resources/products/client/Client.js +2 -2
- package/api/resources/products/client/requests/ProductsListRequest.d.ts +2 -2
- package/api/resources/sites/client/Client.d.ts +3 -0
- package/api/resources/sites/client/Client.js +5 -0
- package/api/resources/sites/resources/activityLogs/client/Client.d.ts +2 -2
- package/api/resources/sites/resources/activityLogs/client/Client.js +2 -2
- package/api/resources/sites/resources/activityLogs/client/requests/ActivityLogsListRequest.d.ts +2 -2
- package/api/resources/sites/resources/comments/client/Client.d.ts +6 -6
- package/api/resources/sites/resources/comments/client/Client.js +6 -6
- package/api/resources/sites/resources/comments/client/requests/CommentsGetCommentThreadRequest.d.ts +2 -2
- package/api/resources/sites/resources/comments/client/requests/CommentsListCommentRepliesRequest.d.ts +2 -2
- package/api/resources/sites/resources/comments/client/requests/CommentsListCommentThreadsRequest.d.ts +2 -2
- package/api/resources/sites/resources/forms/client/Client.d.ts +157 -0
- package/api/resources/sites/resources/forms/client/Client.js +662 -0
- package/api/resources/sites/resources/forms/client/index.d.ts +2 -0
- package/api/resources/sites/resources/forms/client/index.js +17 -0
- package/api/resources/{forms → sites/resources/forms}/client/requests/FormsListSubmissionsBySiteRequest.d.ts +2 -2
- package/api/resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +20 -0
- package/api/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +11 -0
- package/api/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js +5 -0
- package/api/resources/sites/resources/forms/client/requests/index.d.ts +3 -0
- package/api/resources/sites/resources/forms/client/requests/index.js +2 -0
- package/api/resources/sites/resources/forms/index.d.ts +1 -0
- package/api/resources/sites/resources/forms/index.js +17 -0
- package/api/resources/sites/resources/index.d.ts +2 -0
- package/api/resources/sites/resources/index.js +3 -1
- package/api/resources/sites/resources/scripts/client/Client.d.ts +2 -2
- package/api/resources/sites/resources/scripts/client/Client.js +2 -2
- package/api/resources/sites/resources/scripts/client/requests/ScriptsListCustomCodeBlocksRequest.d.ts +2 -2
- package/api/resources/users/client/Client.d.ts +12 -2
- package/api/resources/users/client/Client.js +12 -2
- package/api/resources/users/client/requests/UsersListRequest.d.ts +2 -2
- package/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +2 -2
- package/api/resources/workspaces/resources/auditLogs/client/Client.js +2 -2
- package/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.d.ts +2 -2
- package/dist/Client.js +2 -2
- package/dist/api/resources/accessGroups/client/Client.d.ts +4 -2
- package/dist/api/resources/accessGroups/client/Client.js +4 -2
- package/dist/api/resources/accessGroups/client/requests/AccessGroupsListRequest.d.ts +2 -2
- package/dist/api/resources/assets/client/Client.d.ts +2 -2
- package/dist/api/resources/assets/client/Client.js +2 -2
- package/dist/api/resources/assets/client/requests/AssetsListRequest.d.ts +2 -2
- package/dist/api/resources/collections/resources/items/client/Client.d.ts +10 -12
- package/dist/api/resources/collections/resources/items/client/Client.js +10 -12
- package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsLiveRequest.d.ts +2 -2
- package/dist/api/resources/collections/resources/items/client/requests/ItemsListItemsRequest.d.ts +2 -2
- package/dist/api/resources/components/client/Client.d.ts +6 -6
- package/dist/api/resources/components/client/Client.js +6 -6
- package/dist/api/resources/components/client/requests/ComponentsGetContentRequest.d.ts +2 -2
- package/dist/api/resources/components/client/requests/ComponentsGetPropertiesRequest.d.ts +2 -2
- package/dist/api/resources/components/client/requests/ComponentsListRequest.d.ts +2 -2
- package/dist/api/resources/forms/client/Client.d.ts +4 -31
- package/dist/api/resources/forms/client/Client.js +4 -131
- package/dist/api/resources/forms/client/requests/FormsListRequest.d.ts +2 -2
- package/dist/api/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +2 -2
- package/dist/api/resources/forms/client/requests/index.d.ts +0 -1
- package/dist/api/resources/orders/client/Client.d.ts +2 -2
- package/dist/api/resources/orders/client/Client.js +2 -2
- package/dist/api/resources/orders/client/requests/OrdersListRequest.d.ts +2 -2
- package/dist/api/resources/pages/client/Client.d.ts +4 -4
- package/dist/api/resources/pages/client/Client.js +4 -4
- package/dist/api/resources/pages/client/requests/PagesGetContentRequest.d.ts +2 -2
- package/dist/api/resources/pages/client/requests/PagesListRequest.d.ts +2 -2
- package/dist/api/resources/products/client/Client.d.ts +2 -2
- package/dist/api/resources/products/client/Client.js +2 -2
- package/dist/api/resources/products/client/requests/ProductsListRequest.d.ts +2 -2
- package/dist/api/resources/sites/client/Client.d.ts +3 -0
- package/dist/api/resources/sites/client/Client.js +5 -0
- package/dist/api/resources/sites/resources/activityLogs/client/Client.d.ts +2 -2
- package/dist/api/resources/sites/resources/activityLogs/client/Client.js +2 -2
- package/dist/api/resources/sites/resources/activityLogs/client/requests/ActivityLogsListRequest.d.ts +2 -2
- package/dist/api/resources/sites/resources/comments/client/Client.d.ts +6 -6
- package/dist/api/resources/sites/resources/comments/client/Client.js +6 -6
- package/dist/api/resources/sites/resources/comments/client/requests/CommentsGetCommentThreadRequest.d.ts +2 -2
- package/dist/api/resources/sites/resources/comments/client/requests/CommentsListCommentRepliesRequest.d.ts +2 -2
- package/dist/api/resources/sites/resources/comments/client/requests/CommentsListCommentThreadsRequest.d.ts +2 -2
- package/dist/api/resources/sites/resources/forms/client/Client.d.ts +157 -0
- package/dist/api/resources/sites/resources/forms/client/Client.js +662 -0
- package/dist/api/resources/sites/resources/forms/client/index.d.ts +2 -0
- package/dist/api/resources/sites/resources/forms/client/index.js +17 -0
- package/dist/api/resources/{forms → sites/resources/forms}/client/requests/FormsListSubmissionsBySiteRequest.d.ts +2 -2
- package/dist/api/resources/sites/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.js +5 -0
- package/dist/api/resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.d.ts +20 -0
- package/dist/api/resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.js +5 -0
- package/dist/api/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +11 -0
- package/dist/api/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js +5 -0
- package/dist/api/resources/sites/resources/forms/client/requests/index.d.ts +3 -0
- package/dist/api/resources/sites/resources/forms/client/requests/index.js +2 -0
- package/dist/api/resources/sites/resources/forms/index.d.ts +1 -0
- package/dist/api/resources/sites/resources/forms/index.js +17 -0
- package/dist/api/resources/sites/resources/index.d.ts +2 -0
- package/dist/api/resources/sites/resources/index.js +3 -1
- package/dist/api/resources/sites/resources/scripts/client/Client.d.ts +2 -2
- package/dist/api/resources/sites/resources/scripts/client/Client.js +2 -2
- package/dist/api/resources/sites/resources/scripts/client/requests/ScriptsListCustomCodeBlocksRequest.d.ts +2 -2
- package/dist/api/resources/users/client/Client.d.ts +12 -2
- package/dist/api/resources/users/client/Client.js +12 -2
- package/dist/api/resources/users/client/requests/UsersListRequest.d.ts +2 -2
- package/dist/api/resources/workspaces/resources/auditLogs/client/Client.d.ts +2 -2
- package/dist/api/resources/workspaces/resources/auditLogs/client/Client.js +2 -2
- package/dist/api/resources/workspaces/resources/auditLogs/client/requests/AuditLogsGetWorkspaceAuditLogsRequest.d.ts +2 -2
- package/dist/serialization/resources/sites/resources/forms/client/index.d.ts +1 -0
- package/dist/serialization/resources/sites/resources/forms/client/index.js +17 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +12 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js +43 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/index.d.ts +1 -0
- package/dist/serialization/resources/sites/resources/forms/client/requests/index.js +5 -0
- package/dist/serialization/resources/sites/resources/forms/index.d.ts +1 -0
- package/dist/serialization/resources/sites/resources/forms/index.js +17 -0
- package/dist/serialization/resources/sites/resources/index.d.ts +2 -0
- package/dist/serialization/resources/sites/resources/index.js +3 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/wrapper/FormsClient.d.ts +37 -0
- package/dist/wrapper/FormsClient.js +193 -0
- package/dist/wrapper/ItemsClient.js +18 -14
- package/dist/wrapper/PagesClient.js +6 -5
- package/dist/wrapper/WebflowClient.d.ts +3 -0
- package/dist/wrapper/WebflowClient.js +6 -5
- package/jest.config.mjs +26 -5
- package/package.json +3 -2
- package/reference.md +458 -125
- package/serialization/resources/sites/resources/forms/client/index.d.ts +1 -0
- package/serialization/resources/sites/resources/forms/client/index.js +17 -0
- package/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.d.ts +12 -0
- package/serialization/resources/sites/resources/forms/client/requests/FormsUpdateSubmissionRequest.js +43 -0
- package/serialization/resources/sites/resources/forms/client/requests/index.d.ts +1 -0
- package/serialization/resources/sites/resources/forms/client/requests/index.js +5 -0
- package/serialization/resources/sites/resources/forms/index.d.ts +1 -0
- package/serialization/resources/sites/resources/forms/index.js +17 -0
- package/serialization/resources/sites/resources/index.d.ts +2 -0
- package/serialization/resources/sites/resources/index.js +3 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/wrapper/FormsClient.d.ts +37 -0
- package/wrapper/FormsClient.js +193 -0
- package/wrapper/ItemsClient.js +18 -14
- package/wrapper/PagesClient.js +6 -5
- package/wrapper/WebflowClient.d.ts +3 -0
- package/wrapper/WebflowClient.js +6 -5
- /package/api/resources/{forms → sites/resources/forms}/client/requests/FormsListSubmissionsBySiteRequest.js +0 -0
- /package/{dist/api/resources/forms/client/requests/FormsListSubmissionsBySiteRequest.js → api/resources/sites/resources/forms/client/requests/FormsListSubmissionsRequest.js} +0 -0
|
@@ -49,12 +49,12 @@ service:
|
|
|
49
49
|
type: optional<OrdersListRequestStatus>
|
|
50
50
|
docs: Filter the orders by status
|
|
51
51
|
offset:
|
|
52
|
-
type: optional<
|
|
52
|
+
type: optional<integer>
|
|
53
53
|
docs: >-
|
|
54
54
|
Offset used for pagination if the results have more than limit
|
|
55
55
|
records
|
|
56
56
|
limit:
|
|
57
|
-
type: optional<
|
|
57
|
+
type: optional<integer>
|
|
58
58
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
59
59
|
response:
|
|
60
60
|
docs: Request was successful
|
|
@@ -73,8 +73,8 @@ service:
|
|
|
73
73
|
site_id: 580e63e98c9a982ac9b8b741
|
|
74
74
|
query-parameters:
|
|
75
75
|
status: pending
|
|
76
|
-
offset: 1
|
|
77
|
-
limit: 1
|
|
76
|
+
offset: 1
|
|
77
|
+
limit: 1
|
|
78
78
|
response:
|
|
79
79
|
body:
|
|
80
80
|
orders:
|
|
@@ -88,6 +88,11 @@ service:
|
|
|
88
88
|
Please gift wrap with a personal note saying "Happy
|
|
89
89
|
Birthday, Ford! 🎉
|
|
90
90
|
acceptedOn: '2024-04-10T13:16:21Z'
|
|
91
|
+
fulfilledOn: '2018-12-03T22:06:15Z'
|
|
92
|
+
refundedOn: '2018-12-03T22:06:15Z'
|
|
93
|
+
disputedOn: '2018-12-03T22:06:15Z'
|
|
94
|
+
disputeUpdatedOn: '2018-12-03T22:06:15Z'
|
|
95
|
+
disputeLastStatus: warning_needs_response
|
|
91
96
|
customerPaid:
|
|
92
97
|
unit: USD
|
|
93
98
|
value: '5892'
|
|
@@ -187,15 +192,18 @@ service:
|
|
|
187
192
|
unit: USD
|
|
188
193
|
value: '5892'
|
|
189
194
|
string: \$ 83.09 USD
|
|
195
|
+
weight: 5
|
|
190
196
|
width: 19
|
|
191
197
|
height: 72
|
|
192
198
|
length: 18
|
|
193
199
|
purchasedItemsCount: 3
|
|
194
200
|
stripeDetails:
|
|
201
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
195
202
|
paymentMethod: pm_1P410gJYFi4lcbXWbeKghqjK
|
|
196
203
|
paymentIntentId: pi_3P410iJYFi4lcbXW0EKKgcVg
|
|
197
204
|
customerId: cus_Ptod8KJBiiPgnH
|
|
198
205
|
chargeId: ch_3P410iJYFi4lcbXW0DxUkzCH
|
|
206
|
+
refundReason: requested_by_customer
|
|
199
207
|
stripeCard:
|
|
200
208
|
last4: '4242'
|
|
201
209
|
brand: Visa
|
|
@@ -203,6 +211,13 @@ service:
|
|
|
203
211
|
expires:
|
|
204
212
|
year: 2025
|
|
205
213
|
month: 4
|
|
214
|
+
paypalDetails:
|
|
215
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
216
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
217
|
+
captureId: qwe123rty456uio789p
|
|
218
|
+
refundId: abcde12345fghij67890
|
|
219
|
+
refundReason: Customer requested refund
|
|
220
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
206
221
|
customData:
|
|
207
222
|
- key: value
|
|
208
223
|
metadata:
|
|
@@ -230,7 +245,11 @@ service:
|
|
|
230
245
|
comment: Example comment to myself
|
|
231
246
|
orderComment: ''
|
|
232
247
|
acceptedOn: '2024-03-29T21:29:21Z'
|
|
248
|
+
fulfilledOn: '2018-12-03T22:06:15Z'
|
|
233
249
|
refundedOn: '2024-04-08T18:25:04Z'
|
|
250
|
+
disputedOn: '2018-12-03T22:06:15Z'
|
|
251
|
+
disputeUpdatedOn: '2018-12-03T22:06:15Z'
|
|
252
|
+
disputeLastStatus: warning_needs_response
|
|
234
253
|
customerPaid:
|
|
235
254
|
unit: USD
|
|
236
255
|
value: '5892'
|
|
@@ -337,6 +356,7 @@ service:
|
|
|
337
356
|
length: 40
|
|
338
357
|
purchasedItemsCount: 2
|
|
339
358
|
stripeDetails:
|
|
359
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
340
360
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
341
361
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
342
362
|
customerId: cus_PpRsNHwWdUoRKR
|
|
@@ -350,6 +370,13 @@ service:
|
|
|
350
370
|
expires:
|
|
351
371
|
year: 2024
|
|
352
372
|
month: 4
|
|
373
|
+
paypalDetails:
|
|
374
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
375
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
376
|
+
captureId: qwe123rty456uio789p
|
|
377
|
+
refundId: abcde12345fghij67890
|
|
378
|
+
refundReason: Customer requested refund
|
|
379
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
353
380
|
customData:
|
|
354
381
|
- key: value
|
|
355
382
|
metadata:
|
|
@@ -558,10 +585,12 @@ service:
|
|
|
558
585
|
length: 40
|
|
559
586
|
purchasedItemsCount: 2
|
|
560
587
|
stripeDetails:
|
|
588
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
561
589
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
562
590
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
563
591
|
customerId: cus_PpRsNHwWdUoRKR
|
|
564
592
|
chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2
|
|
593
|
+
disputeId: disputeId
|
|
565
594
|
refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk
|
|
566
595
|
refundReason: fraudulent
|
|
567
596
|
stripeCard:
|
|
@@ -571,6 +600,13 @@ service:
|
|
|
571
600
|
expires:
|
|
572
601
|
year: 2024
|
|
573
602
|
month: 4
|
|
603
|
+
paypalDetails:
|
|
604
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
605
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
606
|
+
captureId: qwe123rty456uio789p
|
|
607
|
+
refundId: abcde12345fghij67890
|
|
608
|
+
refundReason: Customer requested refund
|
|
609
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
574
610
|
customData:
|
|
575
611
|
- key: value
|
|
576
612
|
metadata:
|
|
@@ -794,10 +830,12 @@ service:
|
|
|
794
830
|
length: 40
|
|
795
831
|
purchasedItemsCount: 2
|
|
796
832
|
stripeDetails:
|
|
833
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
797
834
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
798
835
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
799
836
|
customerId: cus_PpRsNHwWdUoRKR
|
|
800
837
|
chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2
|
|
838
|
+
disputeId: disputeId
|
|
801
839
|
refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk
|
|
802
840
|
refundReason: fraudulent
|
|
803
841
|
stripeCard:
|
|
@@ -807,6 +845,13 @@ service:
|
|
|
807
845
|
expires:
|
|
808
846
|
year: 2024
|
|
809
847
|
month: 4
|
|
848
|
+
paypalDetails:
|
|
849
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
850
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
851
|
+
captureId: qwe123rty456uio789p
|
|
852
|
+
refundId: abcde12345fghij67890
|
|
853
|
+
refundReason: Customer requested refund
|
|
854
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
810
855
|
customData:
|
|
811
856
|
- key: value
|
|
812
857
|
metadata:
|
|
@@ -1020,10 +1065,12 @@ service:
|
|
|
1020
1065
|
length: 40
|
|
1021
1066
|
purchasedItemsCount: 2
|
|
1022
1067
|
stripeDetails:
|
|
1068
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
1023
1069
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
1024
1070
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
1025
1071
|
customerId: cus_PpRsNHwWdUoRKR
|
|
1026
1072
|
chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2
|
|
1073
|
+
disputeId: disputeId
|
|
1027
1074
|
refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk
|
|
1028
1075
|
refundReason: fraudulent
|
|
1029
1076
|
stripeCard:
|
|
@@ -1033,6 +1080,13 @@ service:
|
|
|
1033
1080
|
expires:
|
|
1034
1081
|
year: 2024
|
|
1035
1082
|
month: 4
|
|
1083
|
+
paypalDetails:
|
|
1084
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
1085
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
1086
|
+
captureId: qwe123rty456uio789p
|
|
1087
|
+
refundId: abcde12345fghij67890
|
|
1088
|
+
refundReason: Customer requested refund
|
|
1089
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
1036
1090
|
customData:
|
|
1037
1091
|
- key: value
|
|
1038
1092
|
metadata:
|
|
@@ -1236,10 +1290,12 @@ service:
|
|
|
1236
1290
|
length: 40
|
|
1237
1291
|
purchasedItemsCount: 2
|
|
1238
1292
|
stripeDetails:
|
|
1293
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
1239
1294
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
1240
1295
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
1241
1296
|
customerId: cus_PpRsNHwWdUoRKR
|
|
1242
1297
|
chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2
|
|
1298
|
+
disputeId: disputeId
|
|
1243
1299
|
refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk
|
|
1244
1300
|
refundReason: fraudulent
|
|
1245
1301
|
stripeCard:
|
|
@@ -1249,6 +1305,13 @@ service:
|
|
|
1249
1305
|
expires:
|
|
1250
1306
|
year: 2024
|
|
1251
1307
|
month: 4
|
|
1308
|
+
paypalDetails:
|
|
1309
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
1310
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
1311
|
+
captureId: qwe123rty456uio789p
|
|
1312
|
+
refundId: abcde12345fghij67890
|
|
1313
|
+
refundReason: Customer requested refund
|
|
1314
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
1252
1315
|
customData:
|
|
1253
1316
|
- key: value
|
|
1254
1317
|
metadata:
|
|
@@ -1462,10 +1525,12 @@ service:
|
|
|
1462
1525
|
length: 40
|
|
1463
1526
|
purchasedItemsCount: 2
|
|
1464
1527
|
stripeDetails:
|
|
1528
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
1465
1529
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
1466
1530
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
1467
1531
|
customerId: cus_PpRsNHwWdUoRKR
|
|
1468
1532
|
chargeId: ch_3OzmzDJYFi4lcbXW1ndkkrH2
|
|
1533
|
+
disputeId: disputeId
|
|
1469
1534
|
refundId: re_3OzmzDJYFi4lcbXW1kFAmlBk
|
|
1470
1535
|
refundReason: fraudulent
|
|
1471
1536
|
stripeCard:
|
|
@@ -1475,6 +1540,13 @@ service:
|
|
|
1475
1540
|
expires:
|
|
1476
1541
|
year: 2024
|
|
1477
1542
|
month: 4
|
|
1543
|
+
paypalDetails:
|
|
1544
|
+
orderId: 1a2b3c4d5e6f7g8h9i0j
|
|
1545
|
+
payerId: 9k8j7i6h5g4f3e2d1c0b
|
|
1546
|
+
captureId: qwe123rty456uio789p
|
|
1547
|
+
refundId: abcde12345fghij67890
|
|
1548
|
+
refundReason: Customer requested refund
|
|
1549
|
+
disputeId: zxcvbnm987poiuytrewq
|
|
1478
1550
|
customData:
|
|
1479
1551
|
- key: value
|
|
1480
1552
|
metadata:
|
|
@@ -1544,6 +1616,10 @@ webhooks:
|
|
|
1544
1616
|
Please gift wrap with a personal note saying "Happy Birthday,
|
|
1545
1617
|
Ford! 🎉
|
|
1546
1618
|
acceptedOn: '2024-03-29T21:29:21Z'
|
|
1619
|
+
fulfilledOn: '2018-12-03T22:06:15Z'
|
|
1620
|
+
refundedOn: '2018-12-03T22:06:15Z'
|
|
1621
|
+
disputedOn: '2018-12-03T22:06:15Z'
|
|
1622
|
+
disputeUpdatedOn: '2018-12-03T22:06:15Z'
|
|
1547
1623
|
customerPaid:
|
|
1548
1624
|
unit: USD
|
|
1549
1625
|
value: '5892'
|
|
@@ -1647,6 +1723,7 @@ webhooks:
|
|
|
1647
1723
|
length: 40
|
|
1648
1724
|
purchasedItemsCount: 2
|
|
1649
1725
|
stripeDetails:
|
|
1726
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
1650
1727
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
1651
1728
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
1652
1729
|
customerId: cus_PpRsNHwWdUoRKR
|
|
@@ -1833,6 +1910,7 @@ webhooks:
|
|
|
1833
1910
|
length: 40
|
|
1834
1911
|
purchasedItemsCount: 2
|
|
1835
1912
|
stripeDetails:
|
|
1913
|
+
subscriptionId: sub_1J6xwG2eZvKYlo2CXu9Zt0Tn
|
|
1836
1914
|
paymentMethod: pm_1OzmzBJYFi4lcbXWHKNdXU7j
|
|
1837
1915
|
paymentIntentId: pi_3OzmzDJYFi4lcbXW1hTBW6ft
|
|
1838
1916
|
customerId: cus_PpRsNHwWdUoRKR
|
|
@@ -33,10 +33,10 @@ service:
|
|
|
33
33
|
[Lear more about
|
|
34
34
|
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
35
35
|
limit:
|
|
36
|
-
type: optional<
|
|
36
|
+
type: optional<integer>
|
|
37
37
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
38
38
|
offset:
|
|
39
|
-
type: optional<
|
|
39
|
+
type: optional<integer>
|
|
40
40
|
docs: >-
|
|
41
41
|
Offset used for pagination if the results have more than limit
|
|
42
42
|
records
|
|
@@ -55,8 +55,8 @@ service:
|
|
|
55
55
|
site_id: 580e63e98c9a982ac9b8b741
|
|
56
56
|
query-parameters:
|
|
57
57
|
localeId: 65427cf400e02b306eaa04a0
|
|
58
|
-
limit: 1
|
|
59
|
-
offset: 1
|
|
58
|
+
limit: 1
|
|
59
|
+
offset: 1
|
|
60
60
|
response:
|
|
61
61
|
body:
|
|
62
62
|
pages:
|
|
@@ -64,6 +64,8 @@ service:
|
|
|
64
64
|
siteId: 6258612d1ee792848f805dcf
|
|
65
65
|
title: Guide to the Galaxy
|
|
66
66
|
slug: guide-to-the-galaxy
|
|
67
|
+
parentId: 6419db964a9c435aa3af6251
|
|
68
|
+
collectionId: 6390c49774a71f12831a08e3
|
|
67
69
|
createdOn: '2024-03-11T10:42:00Z'
|
|
68
70
|
lastUpdated: '2024-03-11T10:42:42Z'
|
|
69
71
|
archived: false
|
|
@@ -89,12 +91,15 @@ service:
|
|
|
89
91
|
siteId: 6258612d1ee792848f805dcf
|
|
90
92
|
title: Towel Day Celebrations
|
|
91
93
|
slug: towel-day
|
|
94
|
+
parentId: 6419db964a9c435aa3af6251
|
|
95
|
+
collectionId: 6390c49774a71f12831a08e3
|
|
92
96
|
createdOn: '2024-05-25T09:00:00Z'
|
|
93
97
|
lastUpdated: '2024-05-25T09:42:00Z'
|
|
94
98
|
archived: false
|
|
95
99
|
draft: false
|
|
96
100
|
canBranch: true
|
|
97
101
|
isBranch: false
|
|
102
|
+
branchId: 68026fa68ef6dc744c75b833
|
|
98
103
|
seo:
|
|
99
104
|
title: Celebrate Towel Day - The Hitchhiker's Guide to the Galaxy
|
|
100
105
|
description: >-
|
|
@@ -164,6 +169,8 @@ service:
|
|
|
164
169
|
siteId: 6258612d1ee792848f805dcf
|
|
165
170
|
title: Guide to the Galaxy
|
|
166
171
|
slug: guide-to-the-galaxy
|
|
172
|
+
parentId: 6419db964a9c435aa3af6251
|
|
173
|
+
collectionId: 6390c49774a71f12831a08e3
|
|
167
174
|
createdOn: '2024-03-11T10:42:00Z'
|
|
168
175
|
lastUpdated: '2024-03-11T10:42:42Z'
|
|
169
176
|
archived: false
|
|
@@ -271,6 +278,8 @@ service:
|
|
|
271
278
|
siteId: 6258612d1ee792848f805dcf
|
|
272
279
|
title: Guide to the Galaxy
|
|
273
280
|
slug: guide-to-the-galaxy
|
|
281
|
+
parentId: 6419db964a9c435aa3af6251
|
|
282
|
+
collectionId: 6390c49774a71f12831a08e3
|
|
274
283
|
createdOn: '2024-03-11T10:42:00Z'
|
|
275
284
|
lastUpdated: '2024-03-11T10:42:42Z'
|
|
276
285
|
archived: false
|
|
@@ -323,10 +332,10 @@ service:
|
|
|
323
332
|
[Lear more about
|
|
324
333
|
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
325
334
|
limit:
|
|
326
|
-
type: optional<
|
|
335
|
+
type: optional<integer>
|
|
327
336
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
328
337
|
offset:
|
|
329
|
-
type: optional<
|
|
338
|
+
type: optional<integer>
|
|
330
339
|
docs: >-
|
|
331
340
|
Offset used for pagination if the results have more than limit
|
|
332
341
|
records
|
|
@@ -346,8 +355,8 @@ service:
|
|
|
346
355
|
page_id: 63c720f9347c2139b248e552
|
|
347
356
|
query-parameters:
|
|
348
357
|
localeId: 65427cf400e02b306eaa04a0
|
|
349
|
-
limit: 1
|
|
350
|
-
offset: 1
|
|
358
|
+
limit: 1
|
|
359
|
+
offset: 1
|
|
351
360
|
response:
|
|
352
361
|
body:
|
|
353
362
|
pageId: 658205daa3e8206a523b5ad4
|
|
@@ -33,12 +33,12 @@ service:
|
|
|
33
33
|
name: ProductsListRequest
|
|
34
34
|
query-parameters:
|
|
35
35
|
offset:
|
|
36
|
-
type: optional<
|
|
36
|
+
type: optional<integer>
|
|
37
37
|
docs: >-
|
|
38
38
|
Offset used for pagination if the results have more than limit
|
|
39
39
|
records
|
|
40
40
|
limit:
|
|
41
|
-
type: optional<
|
|
41
|
+
type: optional<integer>
|
|
42
42
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
43
43
|
response:
|
|
44
44
|
docs: Request was successful
|
|
@@ -56,8 +56,8 @@ service:
|
|
|
56
56
|
- path-parameters:
|
|
57
57
|
site_id: 580e63e98c9a982ac9b8b741
|
|
58
58
|
query-parameters:
|
|
59
|
-
offset: 1
|
|
60
|
-
limit: 1
|
|
59
|
+
offset: 1
|
|
60
|
+
limit: 1
|
|
61
61
|
response:
|
|
62
62
|
body:
|
|
63
63
|
items:
|
|
@@ -48,6 +48,7 @@ service:
|
|
|
48
48
|
canCopy: false
|
|
49
49
|
displayName: Alert
|
|
50
50
|
hostedLocation: https://cdn.webflow.io/.../alert-0.0.1.js
|
|
51
|
+
integrityHash: integrityHash
|
|
51
52
|
createdOn: '2022-10-26T00:28:54.191Z'
|
|
52
53
|
lastUpdated: lastUpdated
|
|
53
54
|
version: 0.0.1
|
|
@@ -55,6 +56,7 @@ service:
|
|
|
55
56
|
canCopy: false
|
|
56
57
|
displayName: Alert
|
|
57
58
|
hostedLocation: https://cdn.webflow.io/.../alert-0.0.2.js
|
|
59
|
+
integrityHash: integrityHash
|
|
58
60
|
createdOn: '2022-10-26T00:28:54.191Z'
|
|
59
61
|
lastUpdated: lastUpdated
|
|
60
62
|
version: 0.0.2
|
|
@@ -212,7 +214,8 @@ service:
|
|
|
212
214
|
- root.TooManyRequestsError
|
|
213
215
|
- root.InternalServerError
|
|
214
216
|
examples:
|
|
215
|
-
-
|
|
217
|
+
- name: CustomCodeInlineResponse
|
|
218
|
+
path-parameters:
|
|
216
219
|
site_id: 580e63e98c9a982ac9b8b741
|
|
217
220
|
request:
|
|
218
221
|
sourceCode: alert('hello world');
|
|
@@ -225,6 +228,7 @@ service:
|
|
|
225
228
|
displayName: Alert
|
|
226
229
|
hostedLocation: >-
|
|
227
230
|
https://uploads-ssl.webflow.com/6258612d1ee792848f805dcf%2F64b6c769ff52ba6c3d904a91%2F660d6e15b3d1696f2d2b1447%2Falert-0.0.1.js
|
|
231
|
+
integrityHash: integrityHash
|
|
228
232
|
createdOn: '2022-10-26T00:28:54.191Z'
|
|
229
233
|
lastUpdated: lastUpdated
|
|
230
234
|
version: 0.0.1
|
|
@@ -30,10 +30,10 @@ service:
|
|
|
30
30
|
name: ActivityLogsListRequest
|
|
31
31
|
query-parameters:
|
|
32
32
|
limit:
|
|
33
|
-
type: optional<
|
|
33
|
+
type: optional<integer>
|
|
34
34
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
35
35
|
offset:
|
|
36
|
-
type: optional<
|
|
36
|
+
type: optional<integer>
|
|
37
37
|
docs: >-
|
|
38
38
|
Offset used for pagination if the results have more than limit
|
|
39
39
|
records
|
|
@@ -50,8 +50,8 @@ service:
|
|
|
50
50
|
- path-parameters:
|
|
51
51
|
site_id: 580e63e98c9a982ac9b8b741
|
|
52
52
|
query-parameters:
|
|
53
|
-
limit: 1
|
|
54
|
-
offset: 1
|
|
53
|
+
limit: 1
|
|
54
|
+
offset: 1
|
|
55
55
|
response:
|
|
56
56
|
body:
|
|
57
57
|
items:
|
|
@@ -65,6 +65,10 @@ service:
|
|
|
65
65
|
displayName: John Doe
|
|
66
66
|
resourceId: 654c16c7b229e56bcf26870c
|
|
67
67
|
resourceName: foo-bar
|
|
68
|
+
newValue: newValue
|
|
69
|
+
previousValue: previousValue
|
|
70
|
+
payload:
|
|
71
|
+
key: value
|
|
68
72
|
pagination:
|
|
69
73
|
limit: 25
|
|
70
74
|
offset: 0
|
|
@@ -74,12 +74,12 @@ service:
|
|
|
74
74
|
[Lear more about
|
|
75
75
|
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
76
76
|
offset:
|
|
77
|
-
type: optional<
|
|
77
|
+
type: optional<integer>
|
|
78
78
|
docs: >-
|
|
79
79
|
Offset used for pagination if the results have more than limit
|
|
80
80
|
records
|
|
81
81
|
limit:
|
|
82
|
-
type: optional<
|
|
82
|
+
type: optional<integer>
|
|
83
83
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
84
84
|
sortBy:
|
|
85
85
|
type: optional<CommentsListCommentThreadsRequestSortBy>
|
|
@@ -104,8 +104,8 @@ service:
|
|
|
104
104
|
site_id: 580e63e98c9a982ac9b8b741
|
|
105
105
|
query-parameters:
|
|
106
106
|
localeId: 65427cf400e02b306eaa04a0
|
|
107
|
-
offset: 1
|
|
108
|
-
limit: 1
|
|
107
|
+
offset: 1
|
|
108
|
+
limit: 1
|
|
109
109
|
sortBy: createdOn
|
|
110
110
|
sortOrder: asc
|
|
111
111
|
response:
|
|
@@ -115,6 +115,7 @@ service:
|
|
|
115
115
|
siteId: 679826b3b20b045e176bc4b5
|
|
116
116
|
pageId: 679826b3b20b045e176bc4bc
|
|
117
117
|
localeId: 67993753d910db250db64b3e
|
|
118
|
+
itemId: 580e64008c9a982ac9b8b754
|
|
118
119
|
breakpoint: main
|
|
119
120
|
url: >-
|
|
120
121
|
https://webflow.com/design/site-slug-4ec832?workflow=comment&commentId=679d2ddb5196117ad04d1ff8&pageId=679826b3b20b045e176bc4bc
|
|
@@ -134,6 +135,7 @@ service:
|
|
|
134
135
|
siteId: 679826b3b20b045e176bc4b5
|
|
135
136
|
pageId: 679826b3b20b045e176bc4bc
|
|
136
137
|
localeId: 67993753d910db250db64b3e
|
|
138
|
+
itemId: 580e64008c9a982ac9b8b754
|
|
137
139
|
breakpoint: main
|
|
138
140
|
url: >-
|
|
139
141
|
https://webflow.com/design/site-slug-4ec832?workflow=comment&commentId=679d2ddb5196117ad04d1ff8&pageId=679826b3b20b045e176bc4bc
|
|
@@ -191,12 +193,12 @@ service:
|
|
|
191
193
|
[Lear more about
|
|
192
194
|
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
193
195
|
offset:
|
|
194
|
-
type: optional<
|
|
196
|
+
type: optional<integer>
|
|
195
197
|
docs: >-
|
|
196
198
|
Offset used for pagination if the results have more than limit
|
|
197
199
|
records
|
|
198
200
|
limit:
|
|
199
|
-
type: optional<
|
|
201
|
+
type: optional<integer>
|
|
200
202
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
201
203
|
sortBy:
|
|
202
204
|
type: optional<CommentsGetCommentThreadRequestSortBy>
|
|
@@ -222,8 +224,8 @@ service:
|
|
|
222
224
|
comment_thread_id: 580e63e98c9a982ac9b8b741
|
|
223
225
|
query-parameters:
|
|
224
226
|
localeId: 65427cf400e02b306eaa04a0
|
|
225
|
-
offset: 1
|
|
226
|
-
limit: 1
|
|
227
|
+
offset: 1
|
|
228
|
+
limit: 1
|
|
227
229
|
sortBy: createdOn
|
|
228
230
|
sortOrder: asc
|
|
229
231
|
response:
|
|
@@ -284,12 +286,12 @@ service:
|
|
|
284
286
|
[Lear more about
|
|
285
287
|
localization.](/data/v2.0.0/docs/working-with-localization)
|
|
286
288
|
offset:
|
|
287
|
-
type: optional<
|
|
289
|
+
type: optional<integer>
|
|
288
290
|
docs: >-
|
|
289
291
|
Offset used for pagination if the results have more than limit
|
|
290
292
|
records
|
|
291
293
|
limit:
|
|
292
|
-
type: optional<
|
|
294
|
+
type: optional<integer>
|
|
293
295
|
docs: 'Maximum number of records to be returned (max limit: 100)'
|
|
294
296
|
sortBy:
|
|
295
297
|
type: optional<CommentsListCommentRepliesRequestSortBy>
|
|
@@ -315,8 +317,8 @@ service:
|
|
|
315
317
|
comment_thread_id: 580e63e98c9a982ac9b8b741
|
|
316
318
|
query-parameters:
|
|
317
319
|
localeId: 65427cf400e02b306eaa04a0
|
|
318
|
-
offset: 1
|
|
319
|
-
limit: 1
|
|
320
|
+
offset: 1
|
|
321
|
+
limit: 1
|
|
320
322
|
sortBy: createdOn
|
|
321
323
|
sortOrder: asc
|
|
322
324
|
response:
|