shopify-webhook-schemas 0.1.3 → 0.1.4

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.
Files changed (155) hide show
  1. package/Readme.md +14 -2
  2. package/dist/src/anonymize-exemplars.d.ts +1 -0
  3. package/dist/src/anonymize-exemplars.js +51 -0
  4. package/dist/src/index.js +2 -2
  5. package/dist/src/scrape.js +501 -182
  6. package/metadatas/2024-07/app_purchases_one_time/update.json +1 -1
  7. package/metadatas/2024-07/app_subscriptions/approaching_capped_amount.json +1 -1
  8. package/metadatas/2024-07/app_subscriptions/update.json +1 -1
  9. package/metadatas/2024-07/bulk_operations/finish.json +2 -2
  10. package/metadatas/2024-07/checkouts/create.json +6 -6
  11. package/metadatas/2024-07/checkouts/update.json +6 -6
  12. package/metadatas/2024-07/draft_orders/create.json +20 -20
  13. package/metadatas/2024-07/draft_orders/update.json +20 -20
  14. package/metadatas/2024-07/orders/edited.json +1 -0
  15. package/metadatas/2024-07/product_listings/add.json +1 -13
  16. package/metadatas/2024-07/product_listings/update.json +1 -13
  17. package/metadatas/2024-07/scheduled_product_listings/add.json +1 -13
  18. package/metadatas/2024-07/scheduled_product_listings/update.json +1 -13
  19. package/metadatas/2024-07/selling_plan_groups/create.json +2 -2
  20. package/metadatas/2024-07/selling_plan_groups/delete.json +2 -2
  21. package/metadatas/2024-07/selling_plan_groups/update.json +2 -2
  22. package/metadatas/2024-07/subscription_billing_attempts/challenged.json +2 -2
  23. package/metadatas/2024-07/subscription_billing_attempts/failure.json +2 -2
  24. package/metadatas/2024-07/subscription_billing_attempts/success.json +2 -2
  25. package/metadatas/2024-07/subscription_billing_cycle_edits/create.json +1 -1
  26. package/metadatas/2024-07/subscription_billing_cycle_edits/delete.json +1 -1
  27. package/metadatas/2024-07/subscription_billing_cycle_edits/update.json +1 -1
  28. package/metadatas/2024-07/subscription_billing_cycles/skip.json +1 -1
  29. package/metadatas/2024-07/subscription_billing_cycles/unskip.json +1 -1
  30. package/metadatas/2024-07/subscription_contracts/activate.json +3 -3
  31. package/metadatas/2024-07/subscription_contracts/cancel.json +3 -3
  32. package/metadatas/2024-07/subscription_contracts/create.json +3 -3
  33. package/metadatas/2024-07/subscription_contracts/expire.json +3 -3
  34. package/metadatas/2024-07/subscription_contracts/fail.json +3 -3
  35. package/metadatas/2024-07/subscription_contracts/pause.json +3 -3
  36. package/metadatas/2024-07/subscription_contracts/update.json +3 -3
  37. package/package.json +9 -1
  38. package/schemas/2023-07/checkouts/create.json +578 -102
  39. package/schemas/2023-07/checkouts/delete.json +26 -4
  40. package/schemas/2023-07/checkouts/update.json +578 -102
  41. package/schemas/2023-07/collection_listings/add.json +9 -2
  42. package/schemas/2023-07/collection_listings/remove.json +7 -0
  43. package/schemas/2023-07/collection_listings/update.json +9 -2
  44. package/schemas/2023-07/company_locations/create.json +8 -2
  45. package/schemas/2023-07/company_locations/delete.json +8 -2
  46. package/schemas/2023-07/company_locations/update.json +8 -2
  47. package/schemas/2023-07/draft_orders/create.json +729 -126
  48. package/schemas/2023-07/draft_orders/update.json +729 -126
  49. package/schemas/2023-07/fulfillments/create.json +149 -30
  50. package/schemas/2023-07/fulfillments/update.json +149 -30
  51. package/schemas/2023-07/order_transactions/create.json +31 -9
  52. package/schemas/2023-07/orders/cancelled.json +966 -48
  53. package/schemas/2023-07/orders/create.json +966 -48
  54. package/schemas/2023-07/orders/fulfilled.json +966 -48
  55. package/schemas/2023-07/orders/paid.json +966 -48
  56. package/schemas/2023-07/orders/partially_fulfilled.json +966 -48
  57. package/schemas/2023-07/orders/updated.json +966 -48
  58. package/schemas/2023-07/products/create.json +191 -17
  59. package/schemas/2023-07/products/update.json +191 -17
  60. package/schemas/2023-10/checkouts/create.json +578 -102
  61. package/schemas/2023-10/checkouts/delete.json +26 -4
  62. package/schemas/2023-10/checkouts/update.json +578 -102
  63. package/schemas/2023-10/collection_listings/add.json +9 -2
  64. package/schemas/2023-10/collection_listings/remove.json +7 -0
  65. package/schemas/2023-10/collection_listings/update.json +9 -2
  66. package/schemas/2023-10/company_locations/create.json +8 -2
  67. package/schemas/2023-10/company_locations/delete.json +8 -2
  68. package/schemas/2023-10/company_locations/update.json +8 -2
  69. package/schemas/2023-10/draft_orders/create.json +729 -126
  70. package/schemas/2023-10/draft_orders/update.json +729 -126
  71. package/schemas/2023-10/fulfillments/create.json +149 -30
  72. package/schemas/2023-10/fulfillments/update.json +149 -30
  73. package/schemas/2023-10/order_transactions/create.json +28 -9
  74. package/schemas/2023-10/orders/cancelled.json +966 -48
  75. package/schemas/2023-10/orders/create.json +966 -48
  76. package/schemas/2023-10/orders/fulfilled.json +966 -48
  77. package/schemas/2023-10/orders/paid.json +966 -48
  78. package/schemas/2023-10/orders/partially_fulfilled.json +966 -48
  79. package/schemas/2023-10/orders/updated.json +966 -48
  80. package/schemas/2023-10/products/create.json +191 -17
  81. package/schemas/2023-10/products/update.json +191 -17
  82. package/schemas/2024-01/checkouts/create.json +585 -100
  83. package/schemas/2024-01/checkouts/delete.json +26 -4
  84. package/schemas/2024-01/checkouts/update.json +585 -100
  85. package/schemas/2024-01/collection_listings/add.json +9 -2
  86. package/schemas/2024-01/collection_listings/remove.json +7 -0
  87. package/schemas/2024-01/collection_listings/update.json +9 -2
  88. package/schemas/2024-01/company_locations/create.json +8 -2
  89. package/schemas/2024-01/company_locations/delete.json +8 -2
  90. package/schemas/2024-01/company_locations/update.json +8 -2
  91. package/schemas/2024-01/draft_orders/create.json +733 -124
  92. package/schemas/2024-01/draft_orders/update.json +733 -124
  93. package/schemas/2024-01/fulfillment_orders/split.json +237 -2
  94. package/schemas/2024-01/fulfillments/create.json +149 -30
  95. package/schemas/2024-01/fulfillments/update.json +149 -30
  96. package/schemas/2024-01/order_transactions/create.json +28 -9
  97. package/schemas/2024-01/orders/cancelled.json +970 -50
  98. package/schemas/2024-01/orders/create.json +970 -50
  99. package/schemas/2024-01/orders/fulfilled.json +970 -50
  100. package/schemas/2024-01/orders/paid.json +970 -50
  101. package/schemas/2024-01/orders/partially_fulfilled.json +970 -50
  102. package/schemas/2024-01/orders/updated.json +970 -50
  103. package/schemas/2024-01/products/create.json +191 -17
  104. package/schemas/2024-01/products/update.json +191 -17
  105. package/schemas/2024-04/checkouts/create.json +585 -100
  106. package/schemas/2024-04/checkouts/delete.json +26 -4
  107. package/schemas/2024-04/checkouts/update.json +585 -100
  108. package/schemas/2024-04/collection_listings/add.json +9 -2
  109. package/schemas/2024-04/collection_listings/remove.json +7 -0
  110. package/schemas/2024-04/collection_listings/update.json +9 -2
  111. package/schemas/2024-04/company_locations/create.json +8 -2
  112. package/schemas/2024-04/company_locations/delete.json +8 -2
  113. package/schemas/2024-04/company_locations/update.json +8 -2
  114. package/schemas/2024-04/draft_orders/create.json +733 -124
  115. package/schemas/2024-04/draft_orders/update.json +733 -124
  116. package/schemas/2024-04/fulfillment_orders/split.json +237 -2
  117. package/schemas/2024-04/fulfillments/create.json +149 -30
  118. package/schemas/2024-04/fulfillments/update.json +149 -30
  119. package/schemas/2024-04/order_transactions/create.json +28 -9
  120. package/schemas/2024-04/orders/cancelled.json +967 -50
  121. package/schemas/2024-04/orders/create.json +967 -50
  122. package/schemas/2024-04/orders/fulfilled.json +967 -50
  123. package/schemas/2024-04/orders/paid.json +967 -50
  124. package/schemas/2024-04/orders/partially_fulfilled.json +967 -50
  125. package/schemas/2024-04/orders/updated.json +967 -50
  126. package/schemas/2024-04/products/create.json +191 -17
  127. package/schemas/2024-04/products/update.json +191 -17
  128. package/schemas/2024-07/checkouts/create.json +585 -100
  129. package/schemas/2024-07/checkouts/delete.json +26 -4
  130. package/schemas/2024-07/checkouts/update.json +585 -100
  131. package/schemas/2024-07/collection_listings/add.json +9 -2
  132. package/schemas/2024-07/collection_listings/remove.json +7 -0
  133. package/schemas/2024-07/collection_listings/update.json +9 -2
  134. package/schemas/2024-07/company_locations/create.json +8 -2
  135. package/schemas/2024-07/company_locations/delete.json +8 -2
  136. package/schemas/2024-07/company_locations/update.json +8 -2
  137. package/schemas/2024-07/draft_orders/create.json +733 -124
  138. package/schemas/2024-07/draft_orders/update.json +733 -124
  139. package/schemas/2024-07/fulfillment_orders/split.json +237 -2
  140. package/schemas/2024-07/fulfillments/create.json +149 -30
  141. package/schemas/2024-07/fulfillments/update.json +149 -30
  142. package/schemas/2024-07/order_transactions/create.json +28 -9
  143. package/schemas/2024-07/orders/cancelled.json +967 -50
  144. package/schemas/2024-07/orders/create.json +967 -50
  145. package/schemas/2024-07/orders/edited.json +5 -0
  146. package/schemas/2024-07/orders/fulfilled.json +967 -50
  147. package/schemas/2024-07/orders/paid.json +967 -50
  148. package/schemas/2024-07/orders/partially_fulfilled.json +967 -50
  149. package/schemas/2024-07/orders/updated.json +967 -50
  150. package/schemas/2024-07/product_listings/add.json +1 -44
  151. package/schemas/2024-07/product_listings/update.json +1 -44
  152. package/schemas/2024-07/products/create.json +191 -17
  153. package/schemas/2024-07/products/update.json +191 -17
  154. package/schemas/2024-07/scheduled_product_listings/add.json +1 -44
  155. package/schemas/2024-07/scheduled_product_listings/update.json +1 -44
@@ -7,7 +7,7 @@
7
7
  "related_resource": "ApplicationCharge",
8
8
  "response": {
9
9
  "app_purchase_one_time": {
10
- "admin_graphql_api_id": "gid://shopify/AppPurchaseOneTime/1017262358",
10
+ "admin_graphql_api_id": "gid://shopify/AppPurchaseOneTime/1017262370",
11
11
  "name": "Webhook Test",
12
12
  "status": "PENDING",
13
13
  "admin_graphql_api_shop_id": "gid://shopify/Shop/548380009",
@@ -7,7 +7,7 @@
7
7
  "related_resource": "RecurringApplicationCharge",
8
8
  "response": {
9
9
  "app_subscription": {
10
- "admin_graphql_api_id": "gid://shopify/AppSubscription/1029266970",
10
+ "admin_graphql_api_id": "gid://shopify/AppSubscription/1029267008",
11
11
  "name": "Webhook Test",
12
12
  "balance_used": 0,
13
13
  "capped_amount": "20.0",
@@ -8,7 +8,7 @@
8
8
  "related_resource": "RecurringApplicationCharge",
9
9
  "response": {
10
10
  "app_subscription": {
11
- "admin_graphql_api_id": "gid://shopify/AppSubscription/1029266963",
11
+ "admin_graphql_api_id": "gid://shopify/AppSubscription/1029267005",
12
12
  "name": "Webhook Test",
13
13
  "status": "PENDING",
14
14
  "admin_graphql_api_shop_id": "gid://shopify/Shop/548380009",
@@ -8,8 +8,8 @@
8
8
  "related_resource": "BulkOperation",
9
9
  "response": {
10
10
  "admin_graphql_api_id": "gid://shopify/BulkOperation/147595010",
11
- "completed_at": "2024-04-19T14:38:41-04:00",
12
- "created_at": "2024-04-19T14:38:41-04:00",
11
+ "completed_at": "2024-04-25T20:31:44-04:00",
12
+ "created_at": "2024-04-25T20:31:44-04:00",
13
13
  "error_code": null,
14
14
  "status": "completed",
15
15
  "type": "query"
@@ -42,12 +42,12 @@
42
42
  {
43
43
  "applied_discounts": [],
44
44
  "discount_allocations": [],
45
- "key": "d19ac4d87b1625894fbcb3b1ea6d22c7",
46
- "destination_location_id": 938998241,
45
+ "key": "117656c10bac19f961b5bf1b33d63e5e",
46
+ "destination_location_id": 938998371,
47
47
  "fulfillment_service": "manual",
48
48
  "gift_card": false,
49
49
  "grams": 567,
50
- "origin_location_id": 938998240,
50
+ "origin_location_id": 938998370,
51
51
  "presentment_title": "IPod Nano - 8GB",
52
52
  "presentment_variant_title": "Pink",
53
53
  "product_id": 632910392,
@@ -100,12 +100,12 @@
100
100
  {
101
101
  "applied_discounts": [],
102
102
  "discount_allocations": [],
103
- "key": "d19ac4d87b1625894fbcb3b1ea6d22c7",
104
- "destination_location_id": 938998241,
103
+ "key": "117656c10bac19f961b5bf1b33d63e5e",
104
+ "destination_location_id": 938998371,
105
105
  "fulfillment_service": "manual",
106
106
  "gift_card": false,
107
107
  "grams": 567,
108
- "origin_location_id": 938998240,
108
+ "origin_location_id": 938998370,
109
109
  "presentment_title": "IPod Nano - 8GB",
110
110
  "presentment_variant_title": "Pink",
111
111
  "product_id": 632910392,
@@ -42,12 +42,12 @@
42
42
  {
43
43
  "applied_discounts": [],
44
44
  "discount_allocations": [],
45
- "key": "d899d53bd0c8212123df2aa1d0510289",
46
- "destination_location_id": 938998211,
45
+ "key": "2be4a3b3f22ffaa1ed078fa6157daf95",
46
+ "destination_location_id": 938998369,
47
47
  "fulfillment_service": "manual",
48
48
  "gift_card": false,
49
49
  "grams": 567,
50
- "origin_location_id": 938998210,
50
+ "origin_location_id": 938998368,
51
51
  "presentment_title": "IPod Nano - 8GB",
52
52
  "presentment_variant_title": "Pink",
53
53
  "product_id": 632910392,
@@ -100,12 +100,12 @@
100
100
  {
101
101
  "applied_discounts": [],
102
102
  "discount_allocations": [],
103
- "key": "d899d53bd0c8212123df2aa1d0510289",
104
- "destination_location_id": 938998211,
103
+ "key": "2be4a3b3f22ffaa1ed078fa6157daf95",
104
+ "destination_location_id": 938998369,
105
105
  "fulfillment_service": "manual",
106
106
  "gift_card": false,
107
107
  "grams": 567,
108
- "origin_location_id": 938998210,
108
+ "origin_location_id": 938998368,
109
109
  "presentment_title": "IPod Nano - 8GB",
110
110
  "presentment_variant_title": "Pink",
111
111
  "product_id": 632910392,
@@ -23,18 +23,18 @@
23
23
  "updated_at": "2021-12-31T19:00:00-05:00",
24
24
  "tax_exempt": false,
25
25
  "completed_at": null,
26
- "name": "#D182",
26
+ "name": "#D160",
27
27
  "status": "open",
28
28
  "line_items": [
29
29
  {
30
- "id": 3199548,
30
+ "id": 4284481,
31
31
  "variant_id": 49148385,
32
32
  "product_id": 632910392,
33
33
  "title": "IPod Nano - 8GB",
34
34
  "variant_title": "Red",
35
35
  "sku": "IPOD2008RED",
36
36
  "vendor": "Apple",
37
- "quantity": 5,
37
+ "quantity": 4,
38
38
  "requires_shipping": true,
39
39
  "taxable": true,
40
40
  "gift_card": false,
@@ -46,10 +46,10 @@
46
46
  "properties": [],
47
47
  "custom": false,
48
48
  "price": "199.00",
49
- "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/3199548"
49
+ "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/4284481"
50
50
  },
51
51
  {
52
- "id": 99212,
52
+ "id": 4988979,
53
53
  "variant_id": 457924702,
54
54
  "product_id": 632910392,
55
55
  "title": "IPod Nano - 8GB",
@@ -68,17 +68,17 @@
68
68
  "properties": [],
69
69
  "custom": false,
70
70
  "price": "199.00",
71
- "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/99212"
71
+ "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/4988979"
72
72
  },
73
73
  {
74
- "id": 4238599,
74
+ "id": 4479966,
75
75
  "variant_id": 808950810,
76
76
  "product_id": 632910392,
77
77
  "title": "IPod Nano - 8GB",
78
78
  "variant_title": "Pink",
79
79
  "sku": "IPOD2008PINK",
80
80
  "vendor": "Apple",
81
- "quantity": 4,
81
+ "quantity": 8,
82
82
  "requires_shipping": true,
83
83
  "taxable": true,
84
84
  "gift_card": false,
@@ -90,7 +90,7 @@
90
90
  "properties": [],
91
91
  "custom": false,
92
92
  "price": "199.00",
93
- "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/4238599"
93
+ "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/4479966"
94
94
  }
95
95
  ],
96
96
  "shipping_address": {
@@ -130,9 +130,9 @@
130
130
  "invoice_url": "https://jsmith.myshopify.com/548380009/invoices/abcd1234abcd1234abcd1234abcd1234",
131
131
  "applied_discount": {
132
132
  "description": "ABC 123",
133
- "value": "9.0",
133
+ "value": "6.0",
134
134
  "title": "ABC 123",
135
- "amount": "1.00",
135
+ "amount": "10.00",
136
136
  "value_type": "percentage"
137
137
  },
138
138
  "order_id": null,
@@ -140,30 +140,30 @@
140
140
  "title": "ABC 123",
141
141
  "custom": true,
142
142
  "handle": null,
143
- "price": "5.00"
143
+ "price": "2.00"
144
144
  },
145
145
  "tax_lines": [
146
146
  {
147
- "rate": 0.029033681805550937,
147
+ "rate": 0.028672501327433715,
148
148
  "title": "State tax",
149
- "price": "5.00"
149
+ "price": "4.00"
150
150
  },
151
151
  {
152
- "rate": 0.029033681805550937,
152
+ "rate": 0.028672501327433715,
153
153
  "title": "State tax",
154
- "price": "2.00"
154
+ "price": "5.00"
155
155
  },
156
156
  {
157
- "rate": 0.029033681805550937,
157
+ "rate": 0.028672501327433715,
158
158
  "title": "State tax",
159
159
  "price": "2.00"
160
160
  }
161
161
  ],
162
162
  "tags": "",
163
163
  "note_attributes": [],
164
- "total_price": "454.00",
165
- "subtotal_price": "489.00",
166
- "total_tax": "460.00",
164
+ "total_price": "464.00",
165
+ "subtotal_price": "409.00",
166
+ "total_tax": "482.00",
167
167
  "payment_terms": {
168
168
  "id": 706405506930370000,
169
169
  "payment_terms_name": "Net 7",
@@ -23,11 +23,11 @@
23
23
  "updated_at": "2021-12-31T19:00:00-05:00",
24
24
  "tax_exempt": false,
25
25
  "completed_at": null,
26
- "name": "#D186",
26
+ "name": "#D152",
27
27
  "status": "open",
28
28
  "line_items": [
29
29
  {
30
- "id": 3317123,
30
+ "id": 2198646,
31
31
  "variant_id": 49148385,
32
32
  "product_id": 632910392,
33
33
  "title": "IPod Nano - 8GB",
@@ -46,17 +46,17 @@
46
46
  "properties": [],
47
47
  "custom": false,
48
48
  "price": "199.00",
49
- "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/3317123"
49
+ "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/2198646"
50
50
  },
51
51
  {
52
- "id": 721591,
52
+ "id": 2463429,
53
53
  "variant_id": 457924702,
54
54
  "product_id": 632910392,
55
55
  "title": "IPod Nano - 8GB",
56
56
  "variant_title": "Black",
57
57
  "sku": "IPOD2008BLACK",
58
58
  "vendor": "Apple",
59
- "quantity": 10,
59
+ "quantity": 9,
60
60
  "requires_shipping": true,
61
61
  "taxable": true,
62
62
  "gift_card": false,
@@ -68,17 +68,17 @@
68
68
  "properties": [],
69
69
  "custom": false,
70
70
  "price": "199.00",
71
- "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/721591"
71
+ "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/2463429"
72
72
  },
73
73
  {
74
- "id": 2433053,
74
+ "id": 2770097,
75
75
  "variant_id": 808950810,
76
76
  "product_id": 632910392,
77
77
  "title": "IPod Nano - 8GB",
78
78
  "variant_title": "Pink",
79
79
  "sku": "IPOD2008PINK",
80
80
  "vendor": "Apple",
81
- "quantity": 9,
81
+ "quantity": 10,
82
82
  "requires_shipping": true,
83
83
  "taxable": true,
84
84
  "gift_card": false,
@@ -90,7 +90,7 @@
90
90
  "properties": [],
91
91
  "custom": false,
92
92
  "price": "199.00",
93
- "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/2433053"
93
+ "admin_graphql_api_id": "gid://shopify/DraftOrderLineItem/2770097"
94
94
  }
95
95
  ],
96
96
  "shipping_address": {
@@ -130,7 +130,7 @@
130
130
  "invoice_url": "https://jsmith.myshopify.com/548380009/invoices/abcd1234abcd1234abcd1234abcd1234",
131
131
  "applied_discount": {
132
132
  "description": "ABC 123",
133
- "value": "10.0",
133
+ "value": "5.0",
134
134
  "title": "ABC 123",
135
135
  "amount": "4.00",
136
136
  "value_type": "percentage"
@@ -140,30 +140,30 @@
140
140
  "title": "ABC 123",
141
141
  "custom": true,
142
142
  "handle": null,
143
- "price": "3.00"
143
+ "price": "4.00"
144
144
  },
145
145
  "tax_lines": [
146
146
  {
147
- "rate": 0.011790033077683231,
147
+ "rate": 0.01696658581057835,
148
148
  "title": "State tax",
149
- "price": "3.00"
149
+ "price": "2.00"
150
150
  },
151
151
  {
152
- "rate": 0.011790033077683231,
152
+ "rate": 0.01696658581057835,
153
153
  "title": "State tax",
154
- "price": "5.00"
154
+ "price": "3.00"
155
155
  },
156
156
  {
157
- "rate": 0.011790033077683231,
157
+ "rate": 0.01696658581057835,
158
158
  "title": "State tax",
159
- "price": "1.00"
159
+ "price": "3.00"
160
160
  }
161
161
  ],
162
162
  "tags": "",
163
163
  "note_attributes": [],
164
- "total_price": "461.00",
165
- "subtotal_price": "421.00",
166
- "total_tax": "475.00",
164
+ "total_price": "438.00",
165
+ "subtotal_price": "427.00",
166
+ "total_tax": "428.00",
167
167
  "payment_terms": {
168
168
  "id": 706405506930370000,
169
169
  "payment_terms_name": "Net 7",
@@ -19,6 +19,7 @@
19
19
  "id": 78912328793123780,
20
20
  "app_id": null,
21
21
  "created_at": "2021-12-31T19:00:00-05:00",
22
+ "committed_at": "2021-12-31T19:00:00-05:00",
22
23
  "notify_customer": false,
23
24
  "order_id": 820982911946154500,
24
25
  "staff_note": "",
@@ -84,19 +84,7 @@
84
84
  "updated_at": null
85
85
  }
86
86
  ],
87
- "images": [
88
- {
89
- "id": 539438707724640960,
90
- "created_at": null,
91
- "position": 0,
92
- "updated_at": null,
93
- "product_id": 788032119674292900,
94
- "src": "//cdn.shopify.com/shopifycloud/shopify/assets/shopify_shirt-39bb555874ecaeed0a1170417d58bbcf792f7ceb56acfe758384f788710ba635.png",
95
- "variant_ids": [],
96
- "width": 323,
97
- "height": 434
98
- }
99
- ],
87
+ "images": [],
100
88
  "options": [
101
89
  {
102
90
  "id": 527050010214937800,
@@ -84,19 +84,7 @@
84
84
  "updated_at": null
85
85
  }
86
86
  ],
87
- "images": [
88
- {
89
- "id": 539438707724640960,
90
- "created_at": null,
91
- "position": 0,
92
- "updated_at": null,
93
- "product_id": 788032119674292900,
94
- "src": "//cdn.shopify.com/shopifycloud/shopify/assets/shopify_shirt-39bb555874ecaeed0a1170417d58bbcf792f7ceb56acfe758384f788710ba635.png",
95
- "variant_ids": [],
96
- "width": 323,
97
- "height": 434
98
- }
99
- ],
87
+ "images": [],
100
88
  "options": [
101
89
  {
102
90
  "id": 527050010214937800,
@@ -84,19 +84,7 @@
84
84
  }
85
85
  ],
86
86
  "publish_at": null,
87
- "images": [
88
- {
89
- "id": 539438707724640960,
90
- "created_at": null,
91
- "position": 0,
92
- "updated_at": null,
93
- "product_id": 788032119674292900,
94
- "src": "//cdn.shopify.com/shopifycloud/shopify/assets/shopify_shirt-39bb555874ecaeed0a1170417d58bbcf792f7ceb56acfe758384f788710ba635.png",
95
- "variant_ids": [],
96
- "width": 323,
97
- "height": 434
98
- }
99
- ],
87
+ "images": [],
100
88
  "options": [
101
89
  {
102
90
  "id": 527050010214937800,
@@ -84,19 +84,7 @@
84
84
  }
85
85
  ],
86
86
  "publish_at": null,
87
- "images": [
88
- {
89
- "id": 539438707724640960,
90
- "created_at": null,
91
- "position": 0,
92
- "updated_at": null,
93
- "product_id": 788032119674292900,
94
- "src": "//cdn.shopify.com/shopifycloud/shopify/assets/shopify_shirt-39bb555874ecaeed0a1170417d58bbcf792f7ceb56acfe758384f788710ba635.png",
95
- "variant_ids": [],
96
- "width": 323,
97
- "height": 434
98
- }
99
- ],
87
+ "images": [],
100
88
  "options": [
101
89
  {
102
90
  "id": 527050010214937800,
@@ -10,8 +10,8 @@
10
10
  "name": "selling_plan_groups/create",
11
11
  "related_resource": "SellingPlanGroup",
12
12
  "response": {
13
- "admin_graphql_api_id": "gid://shopify/SellingPlanGroup/1039518919",
14
- "id": 1039518919,
13
+ "admin_graphql_api_id": "gid://shopify/SellingPlanGroup/1039518983",
14
+ "id": 1039518983,
15
15
  "name": "Subscribe & Save",
16
16
  "merchant_code": "sub-n-save",
17
17
  "admin_graphql_api_app": "gid://shopify/App/2525000003",
@@ -10,7 +10,7 @@
10
10
  "name": "selling_plan_groups/delete",
11
11
  "related_resource": "SellingPlanGroup",
12
12
  "response": {
13
- "admin_graphql_api_id": "gid://shopify/SellingPlanGroup/1039518927",
14
- "id": 1039518927
13
+ "admin_graphql_api_id": "gid://shopify/SellingPlanGroup/1039518995",
14
+ "id": 1039518995
15
15
  }
16
16
  }
@@ -10,8 +10,8 @@
10
10
  "name": "selling_plan_groups/update",
11
11
  "related_resource": "SellingPlanGroup",
12
12
  "response": {
13
- "admin_graphql_api_id": "gid://shopify/SellingPlanGroup/1039518929",
14
- "id": 1039518929,
13
+ "admin_graphql_api_id": "gid://shopify/SellingPlanGroup/1039518985",
14
+ "id": 1039518985,
15
15
  "name": "Subscribe & Save",
16
16
  "merchant_code": "sub-n-save",
17
17
  "admin_graphql_api_app": "gid://shopify/App/2525000003",
@@ -18,8 +18,8 @@
18
18
  "idempotency_key": "9a453d81-d41d-403e-806f-714dee215ff9",
19
19
  "order_id": 1,
20
20
  "admin_graphql_api_order_id": "gid://shopify/Order/1",
21
- "subscription_contract_id": 3445626072,
22
- "admin_graphql_api_subscription_contract_id": "gid://shopify/SubscriptionContract/3445626072",
21
+ "subscription_contract_id": 5106514812,
22
+ "admin_graphql_api_subscription_contract_id": "gid://shopify/SubscriptionContract/5106514812",
23
23
  "ready": true,
24
24
  "error_message": null,
25
25
  "error_code": null
@@ -18,8 +18,8 @@
18
18
  "idempotency_key": "9a453d81-d41d-403e-806f-714dee215ff9",
19
19
  "order_id": 1,
20
20
  "admin_graphql_api_order_id": "gid://shopify/Order/1",
21
- "subscription_contract_id": 5638742095,
22
- "admin_graphql_api_subscription_contract_id": "gid://shopify/SubscriptionContract/5638742095",
21
+ "subscription_contract_id": 334773962,
22
+ "admin_graphql_api_subscription_contract_id": "gid://shopify/SubscriptionContract/334773962",
23
23
  "ready": true,
24
24
  "error_message": null,
25
25
  "error_code": null
@@ -18,8 +18,8 @@
18
18
  "idempotency_key": "9a453d81-d41d-403e-806f-714dee215ff9",
19
19
  "order_id": 1,
20
20
  "admin_graphql_api_order_id": "gid://shopify/Order/1",
21
- "subscription_contract_id": 6281810684,
22
- "admin_graphql_api_subscription_contract_id": "gid://shopify/SubscriptionContract/6281810684",
21
+ "subscription_contract_id": 6873605634,
22
+ "admin_graphql_api_subscription_contract_id": "gid://shopify/SubscriptionContract/6873605634",
23
23
  "ready": true,
24
24
  "error_message": null,
25
25
  "error_code": null
@@ -10,7 +10,7 @@
10
10
  "name": "subscription_billing_cycle_edits/create",
11
11
  "related_resource": "SubscriptionBillingCycle",
12
12
  "response": {
13
- "subscription_contract_id": 5921010725,
13
+ "subscription_contract_id": 6707033905,
14
14
  "cycle_start_at": "2022-10-01T00:00:00-04:00",
15
15
  "cycle_end_at": "2022-11-01T00:00:00-04:00",
16
16
  "cycle_index": 1,
@@ -10,7 +10,7 @@
10
10
  "name": "subscription_billing_cycle_edits/delete",
11
11
  "related_resource": "SubscriptionBillingCycle",
12
12
  "response": {
13
- "subscription_contract_id": 8180161058,
13
+ "subscription_contract_id": 1238716269,
14
14
  "cycle_start_at": "2022-10-01T00:00:00-04:00",
15
15
  "cycle_end_at": "2022-11-01T00:00:00-04:00",
16
16
  "cycle_index": 1,
@@ -10,7 +10,7 @@
10
10
  "name": "subscription_billing_cycle_edits/update",
11
11
  "related_resource": "SubscriptionBillingCycle",
12
12
  "response": {
13
- "subscription_contract_id": 7962010748,
13
+ "subscription_contract_id": 1429327114,
14
14
  "cycle_start_at": "2022-10-01T00:00:00-04:00",
15
15
  "cycle_end_at": "2022-11-01T00:00:00-04:00",
16
16
  "cycle_index": 1,
@@ -10,7 +10,7 @@
10
10
  "name": "subscription_billing_cycles/skip",
11
11
  "related_resource": "SubscriptionBillingCycle",
12
12
  "response": {
13
- "subscription_contract_id": 2049282222,
13
+ "subscription_contract_id": 3016930544,
14
14
  "cycle_start_at": "2022-10-01T00:00:00-04:00",
15
15
  "cycle_end_at": "2022-11-01T00:00:00-04:00",
16
16
  "cycle_index": 1,
@@ -10,7 +10,7 @@
10
10
  "name": "subscription_billing_cycles/unskip",
11
11
  "related_resource": "SubscriptionBillingCycle",
12
12
  "response": {
13
- "subscription_contract_id": 4636862469,
13
+ "subscription_contract_id": 4319807393,
14
14
  "cycle_start_at": "2022-10-01T00:00:00-04:00",
15
15
  "cycle_end_at": "2022-11-01T00:00:00-04:00",
16
16
  "cycle_index": 1,
@@ -10,8 +10,8 @@
10
10
  "name": "subscription_contracts/activate",
11
11
  "related_resource": "SubscriptionContract",
12
12
  "response": {
13
- "admin_graphql_api_id": "gid://shopify/SubscriptionContract/7851562844",
14
- "id": 7851562844,
13
+ "admin_graphql_api_id": "gid://shopify/SubscriptionContract/5854152321",
14
+ "id": 5854152321,
15
15
  "billing_policy": {
16
16
  "interval": "week",
17
17
  "interval_count": 4,
@@ -28,6 +28,6 @@
28
28
  "status": "active",
29
29
  "admin_graphql_api_origin_order_id": "gid://shopify/Order/1",
30
30
  "origin_order_id": 1,
31
- "revision_id": "2212725351"
31
+ "revision_id": "7311085199"
32
32
  }
33
33
  }
@@ -10,8 +10,8 @@
10
10
  "name": "subscription_contracts/cancel",
11
11
  "related_resource": "SubscriptionContract",
12
12
  "response": {
13
- "admin_graphql_api_id": "gid://shopify/SubscriptionContract/6854021915",
14
- "id": 6854021915,
13
+ "admin_graphql_api_id": "gid://shopify/SubscriptionContract/6812254712",
14
+ "id": 6812254712,
15
15
  "billing_policy": {
16
16
  "interval": "week",
17
17
  "interval_count": 4,
@@ -28,6 +28,6 @@
28
28
  "status": "cancelled",
29
29
  "admin_graphql_api_origin_order_id": "gid://shopify/Order/1",
30
30
  "origin_order_id": 1,
31
- "revision_id": "7036711178"
31
+ "revision_id": "1690139918"
32
32
  }
33
33
  }
@@ -10,8 +10,8 @@
10
10
  "name": "subscription_contracts/create",
11
11
  "related_resource": "SubscriptionContract",
12
12
  "response": {
13
- "admin_graphql_api_id": "gid://shopify/SubscriptionContract/8567722037",
14
- "id": 8567722037,
13
+ "admin_graphql_api_id": "gid://shopify/SubscriptionContract/9303122355",
14
+ "id": 9303122355,
15
15
  "billing_policy": {
16
16
  "interval": "week",
17
17
  "interval_count": 4,
@@ -28,6 +28,6 @@
28
28
  "status": "active",
29
29
  "admin_graphql_api_origin_order_id": "gid://shopify/Order/1",
30
30
  "origin_order_id": 1,
31
- "revision_id": "4542687532"
31
+ "revision_id": "9261805954"
32
32
  }
33
33
  }
@@ -10,8 +10,8 @@
10
10
  "name": "subscription_contracts/expire",
11
11
  "related_resource": "SubscriptionContract",
12
12
  "response": {
13
- "admin_graphql_api_id": "gid://shopify/SubscriptionContract/1992601942",
14
- "id": 1992601942,
13
+ "admin_graphql_api_id": "gid://shopify/SubscriptionContract/8904957074",
14
+ "id": 8904957074,
15
15
  "billing_policy": {
16
16
  "interval": "week",
17
17
  "interval_count": 4,
@@ -28,6 +28,6 @@
28
28
  "status": "expired",
29
29
  "admin_graphql_api_origin_order_id": "gid://shopify/Order/1",
30
30
  "origin_order_id": 1,
31
- "revision_id": "7014858926"
31
+ "revision_id": "4203144805"
32
32
  }
33
33
  }