shopify-webhook-schemas 0.1.8 → 0.2.0
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/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +3 -0
- package/dist/src/infer-schema.d.ts +18 -0
- package/dist/src/infer-schema.js +717 -0
- package/dist/src/scrape.js +11 -623
- package/metadatas/2025-04/app_purchases_one_time/update.json +1 -1
- package/metadatas/2025-04/app_subscriptions/approaching_capped_amount.json +1 -1
- package/metadatas/2025-04/app_subscriptions/update.json +5 -2
- package/metadatas/2025-04/bulk_operations/finish.json +1 -1
- package/metadatas/2025-04/checkouts/create.json +6 -6
- package/metadatas/2025-04/checkouts/update.json +6 -6
- package/metadatas/2025-04/discounts/create.json +2 -2
- package/metadatas/2025-04/discounts/delete.json +1 -1
- package/metadatas/2025-04/discounts/redeemcode_added.json +1 -1
- package/metadatas/2025-04/discounts/redeemcode_removed.json +1 -1
- package/metadatas/2025-04/discounts/update.json +2 -2
- package/metadatas/2025-04/draft_orders/create.json +24 -24
- package/metadatas/2025-04/draft_orders/update.json +26 -26
- package/metadatas/2025-04/fulfillments/create.json +71 -24
- package/metadatas/2025-04/fulfillments/update.json +71 -24
- package/metadatas/2025-04/inventory_items/create.json +2 -1
- package/metadatas/2025-04/inventory_items/delete.json +2 -1
- package/metadatas/2025-04/inventory_items/update.json +2 -1
- package/metadatas/2025-04/markets_backup_region/update.json +18 -0
- package/metadatas/2025-04/order_transactions/create.json +3 -3
- package/metadatas/2025-04/orders/cancelled.json +91 -41
- package/metadatas/2025-04/orders/create.json +91 -41
- package/metadatas/2025-04/orders/edited.json +1 -1
- package/metadatas/2025-04/orders/fulfilled.json +91 -41
- package/metadatas/2025-04/orders/paid.json +91 -41
- package/metadatas/2025-04/orders/partially_fulfilled.json +91 -41
- package/metadatas/2025-04/orders/updated.json +91 -41
- package/metadatas/2025-04/refunds/create.json +110 -34
- package/metadatas/2025-04/selling_plan_groups/create.json +2 -2
- package/metadatas/2025-04/selling_plan_groups/delete.json +2 -2
- package/metadatas/2025-04/selling_plan_groups/update.json +2 -2
- package/metadatas/2025-04/subscription_billing_attempts/challenged.json +2 -2
- package/metadatas/2025-04/subscription_billing_attempts/failure.json +2 -2
- package/metadatas/2025-04/subscription_billing_attempts/success.json +2 -2
- package/metadatas/2025-04/subscription_contracts/activate.json +4 -4
- package/metadatas/2025-04/subscription_contracts/cancel.json +4 -4
- package/metadatas/2025-04/subscription_contracts/create.json +4 -4
- package/metadatas/2025-04/subscription_contracts/expire.json +4 -4
- package/metadatas/2025-04/subscription_contracts/fail.json +4 -4
- package/metadatas/2025-04/subscription_contracts/pause.json +4 -4
- package/metadatas/2025-04/subscription_contracts/update.json +4 -4
- package/metadatas/2025-04/tender_transactions/create.json +1 -1
- package/package.json +6 -6
- package/schemas/2025-04/app_subscriptions/update.json +12 -0
- package/schemas/2025-04/carts/create.json +4 -1
- package/schemas/2025-04/carts/update.json +4 -1
- package/schemas/2025-04/checkouts/create.json +26 -16
- package/schemas/2025-04/checkouts/delete.json +3 -0
- package/schemas/2025-04/checkouts/update.json +26 -16
- package/schemas/2025-04/collections/create.json +20 -0
- package/schemas/2025-04/collections/update.json +20 -0
- package/schemas/2025-04/company_locations/create.json +37 -6
- package/schemas/2025-04/company_locations/delete.json +37 -6
- package/schemas/2025-04/company_locations/update.json +37 -6
- package/schemas/2025-04/customer_payment_methods/create.json +1 -1
- package/schemas/2025-04/customer_payment_methods/revoke.json +1 -1
- package/schemas/2025-04/customer_payment_methods/update.json +1 -1
- package/schemas/2025-04/customers/create.json +86 -4
- package/schemas/2025-04/customers/delete.json +78 -2
- package/schemas/2025-04/customers/disable.json +86 -4
- package/schemas/2025-04/customers/enable.json +86 -4
- package/schemas/2025-04/customers/update.json +86 -4
- package/schemas/2025-04/customers_email_marketing_consent/update.json +13 -3
- package/schemas/2025-04/customers_marketing_consent/update.json +13 -3
- package/schemas/2025-04/disputes/create.json +0 -1
- package/schemas/2025-04/disputes/update.json +0 -1
- package/schemas/2025-04/domains/create.json +4 -2
- package/schemas/2025-04/domains/destroy.json +4 -2
- package/schemas/2025-04/domains/update.json +4 -2
- package/schemas/2025-04/draft_orders/create.json +138 -4
- package/schemas/2025-04/draft_orders/update.json +138 -4
- package/schemas/2025-04/fulfillments/create.json +196 -66
- package/schemas/2025-04/fulfillments/update.json +196 -66
- package/schemas/2025-04/inventory_items/create.json +7 -3
- package/schemas/2025-04/inventory_items/update.json +7 -3
- package/schemas/2025-04/markets_backup_region/update.json +17 -0
- package/schemas/2025-04/order_transactions/create.json +15 -5
- package/schemas/2025-04/orders/cancelled.json +76 -4
- package/schemas/2025-04/orders/create.json +76 -4
- package/schemas/2025-04/orders/edited.json +8 -2
- package/schemas/2025-04/orders/fulfilled.json +76 -4
- package/schemas/2025-04/orders/paid.json +76 -4
- package/schemas/2025-04/orders/partially_fulfilled.json +76 -4
- package/schemas/2025-04/orders/risk_assessment_changed.json +9 -2
- package/schemas/2025-04/orders/shopify_protect_eligibility_changed.json +8 -1
- package/schemas/2025-04/orders/updated.json +76 -4
- package/schemas/2025-04/payment_terms/create.json +4 -1
- package/schemas/2025-04/payment_terms/update.json +4 -1
- package/schemas/2025-04/products/create.json +160 -64
- package/schemas/2025-04/products/update.json +160 -64
- package/schemas/2025-04/refunds/create.json +764 -17
- package/schemas/2025-04/selling_plan_groups/create.json +66 -10
- package/schemas/2025-04/selling_plan_groups/update.json +66 -10
- package/schemas/2025-04/shop/update.json +4 -3
- package/schemas/2025-04/subscription_billing_attempts/challenged.json +0 -1
- package/schemas/2025-04/subscription_billing_attempts/failure.json +0 -1
- package/schemas/2025-04/subscription_billing_attempts/success.json +0 -1
- package/schemas/2025-04/subscription_contracts/activate.json +8 -2
- package/schemas/2025-04/subscription_contracts/cancel.json +8 -2
- package/schemas/2025-04/subscription_contracts/create.json +8 -2
- package/schemas/2025-04/subscription_contracts/expire.json +8 -2
- package/schemas/2025-04/subscription_contracts/fail.json +8 -2
- package/schemas/2025-04/subscription_contracts/pause.json +8 -2
- package/schemas/2025-04/subscription_contracts/update.json +8 -2
- package/schemas/2025-04/tender_transactions/create.json +9 -16
- package/schemas/2025-04/themes/create.json +4 -1
- package/schemas/2025-04/themes/publish.json +4 -1
- package/schemas/2025-04/themes/update.json +4 -1
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"currency_code": "USD"
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"current_subtotal_price": "
|
|
46
|
+
"current_subtotal_price": "369.97",
|
|
47
47
|
"current_subtotal_price_set": {
|
|
48
48
|
"shop_money": {
|
|
49
|
-
"amount": "
|
|
49
|
+
"amount": "369.97",
|
|
50
50
|
"currency_code": "USD"
|
|
51
51
|
},
|
|
52
52
|
"presentment_money": {
|
|
53
|
-
"amount": "
|
|
53
|
+
"amount": "369.97",
|
|
54
54
|
"currency_code": "USD"
|
|
55
55
|
}
|
|
56
56
|
},
|
|
@@ -67,14 +67,14 @@
|
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
69
|
"current_total_duties_set": null,
|
|
70
|
-
"current_total_price": "
|
|
70
|
+
"current_total_price": "369.97",
|
|
71
71
|
"current_total_price_set": {
|
|
72
72
|
"shop_money": {
|
|
73
|
-
"amount": "
|
|
73
|
+
"amount": "369.97",
|
|
74
74
|
"currency_code": "USD"
|
|
75
75
|
},
|
|
76
76
|
"presentment_money": {
|
|
77
|
-
"amount": "
|
|
77
|
+
"amount": "369.97",
|
|
78
78
|
"currency_code": "USD"
|
|
79
79
|
}
|
|
80
80
|
},
|
|
@@ -123,14 +123,14 @@
|
|
|
123
123
|
"source_identifier": null,
|
|
124
124
|
"source_name": "web",
|
|
125
125
|
"source_url": null,
|
|
126
|
-
"subtotal_price": "
|
|
126
|
+
"subtotal_price": "359.97",
|
|
127
127
|
"subtotal_price_set": {
|
|
128
128
|
"shop_money": {
|
|
129
|
-
"amount": "
|
|
129
|
+
"amount": "359.97",
|
|
130
130
|
"currency_code": "USD"
|
|
131
131
|
},
|
|
132
132
|
"presentment_money": {
|
|
133
|
-
"amount": "
|
|
133
|
+
"amount": "359.97",
|
|
134
134
|
"currency_code": "USD"
|
|
135
135
|
}
|
|
136
136
|
},
|
|
@@ -171,26 +171,26 @@
|
|
|
171
171
|
"currency_code": "USD"
|
|
172
172
|
}
|
|
173
173
|
},
|
|
174
|
-
"total_line_items_price": "
|
|
174
|
+
"total_line_items_price": "369.97",
|
|
175
175
|
"total_line_items_price_set": {
|
|
176
176
|
"shop_money": {
|
|
177
|
-
"amount": "
|
|
177
|
+
"amount": "369.97",
|
|
178
178
|
"currency_code": "USD"
|
|
179
179
|
},
|
|
180
180
|
"presentment_money": {
|
|
181
|
-
"amount": "
|
|
181
|
+
"amount": "369.97",
|
|
182
182
|
"currency_code": "USD"
|
|
183
183
|
}
|
|
184
184
|
},
|
|
185
|
-
"total_outstanding": "
|
|
186
|
-
"total_price": "
|
|
185
|
+
"total_outstanding": "369.97",
|
|
186
|
+
"total_price": "359.97",
|
|
187
187
|
"total_price_set": {
|
|
188
188
|
"shop_money": {
|
|
189
|
-
"amount": "
|
|
189
|
+
"amount": "359.97",
|
|
190
190
|
"currency_code": "USD"
|
|
191
191
|
},
|
|
192
192
|
"presentment_money": {
|
|
193
|
-
"amount": "
|
|
193
|
+
"amount": "359.97",
|
|
194
194
|
"currency_code": "USD"
|
|
195
195
|
}
|
|
196
196
|
},
|
|
@@ -276,8 +276,8 @@
|
|
|
276
276
|
"fulfillments": [],
|
|
277
277
|
"line_items": [
|
|
278
278
|
{
|
|
279
|
-
"id":
|
|
280
|
-
"admin_graphql_api_id": "gid://shopify/LineItem/
|
|
279
|
+
"id": 487817672276298560,
|
|
280
|
+
"admin_graphql_api_id": "gid://shopify/LineItem/487817672276298554",
|
|
281
281
|
"attributed_staffs": [
|
|
282
282
|
{
|
|
283
283
|
"id": "gid://shopify/StaffMember/902541635",
|
|
@@ -289,28 +289,28 @@
|
|
|
289
289
|
"fulfillment_service": "manual",
|
|
290
290
|
"fulfillment_status": null,
|
|
291
291
|
"gift_card": false,
|
|
292
|
-
"grams":
|
|
293
|
-
"name": "
|
|
294
|
-
"price": "
|
|
292
|
+
"grams": 100,
|
|
293
|
+
"name": "Aviator sunglasses",
|
|
294
|
+
"price": "89.99",
|
|
295
295
|
"price_set": {
|
|
296
296
|
"shop_money": {
|
|
297
|
-
"amount": "
|
|
297
|
+
"amount": "89.99",
|
|
298
298
|
"currency_code": "USD"
|
|
299
299
|
},
|
|
300
300
|
"presentment_money": {
|
|
301
|
-
"amount": "
|
|
301
|
+
"amount": "89.99",
|
|
302
302
|
"currency_code": "USD"
|
|
303
303
|
}
|
|
304
304
|
},
|
|
305
305
|
"product_exists": true,
|
|
306
|
-
"product_id":
|
|
306
|
+
"product_id": 788032119674292900,
|
|
307
307
|
"properties": [],
|
|
308
308
|
"quantity": 1,
|
|
309
309
|
"requires_shipping": true,
|
|
310
310
|
"sales_line_item_group_id": null,
|
|
311
|
-
"sku": "
|
|
311
|
+
"sku": "SKU2006-001",
|
|
312
312
|
"taxable": true,
|
|
313
|
-
"title": "
|
|
313
|
+
"title": "Aviator sunglasses",
|
|
314
314
|
"total_discount": "0.00",
|
|
315
315
|
"total_discount_set": {
|
|
316
316
|
"shop_money": {
|
|
@@ -322,8 +322,8 @@
|
|
|
322
322
|
"currency_code": "USD"
|
|
323
323
|
}
|
|
324
324
|
},
|
|
325
|
-
"variant_id":
|
|
326
|
-
"variant_inventory_management":
|
|
325
|
+
"variant_id": null,
|
|
326
|
+
"variant_inventory_management": null,
|
|
327
327
|
"variant_title": null,
|
|
328
328
|
"vendor": null,
|
|
329
329
|
"tax_lines": [],
|
|
@@ -331,36 +331,86 @@
|
|
|
331
331
|
"discount_allocations": []
|
|
332
332
|
},
|
|
333
333
|
{
|
|
334
|
-
"id":
|
|
335
|
-
"admin_graphql_api_id": "gid://shopify/LineItem/
|
|
334
|
+
"id": 976318377106520300,
|
|
335
|
+
"admin_graphql_api_id": "gid://shopify/LineItem/976318377106520349",
|
|
336
336
|
"attributed_staffs": [],
|
|
337
337
|
"current_quantity": 1,
|
|
338
338
|
"fulfillable_quantity": 1,
|
|
339
339
|
"fulfillment_service": "manual",
|
|
340
340
|
"fulfillment_status": null,
|
|
341
341
|
"gift_card": false,
|
|
342
|
-
"grams":
|
|
343
|
-
"name": "
|
|
344
|
-
"price": "
|
|
342
|
+
"grams": 1000,
|
|
343
|
+
"name": "Mid-century lounger",
|
|
344
|
+
"price": "159.99",
|
|
345
345
|
"price_set": {
|
|
346
346
|
"shop_money": {
|
|
347
|
-
"amount": "
|
|
347
|
+
"amount": "159.99",
|
|
348
348
|
"currency_code": "USD"
|
|
349
349
|
},
|
|
350
350
|
"presentment_money": {
|
|
351
|
-
"amount": "
|
|
351
|
+
"amount": "159.99",
|
|
352
352
|
"currency_code": "USD"
|
|
353
353
|
}
|
|
354
354
|
},
|
|
355
355
|
"product_exists": true,
|
|
356
|
-
"product_id":
|
|
356
|
+
"product_id": 788032119674292900,
|
|
357
357
|
"properties": [],
|
|
358
358
|
"quantity": 1,
|
|
359
359
|
"requires_shipping": true,
|
|
360
|
-
"sales_line_item_group_id":
|
|
361
|
-
"sku": "
|
|
360
|
+
"sales_line_item_group_id": 142831562,
|
|
361
|
+
"sku": "SKU2006-020",
|
|
362
|
+
"taxable": true,
|
|
363
|
+
"title": "Mid-century lounger",
|
|
364
|
+
"total_discount": "0.00",
|
|
365
|
+
"total_discount_set": {
|
|
366
|
+
"shop_money": {
|
|
367
|
+
"amount": "0.00",
|
|
368
|
+
"currency_code": "USD"
|
|
369
|
+
},
|
|
370
|
+
"presentment_money": {
|
|
371
|
+
"amount": "0.00",
|
|
372
|
+
"currency_code": "USD"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"variant_id": null,
|
|
376
|
+
"variant_inventory_management": null,
|
|
377
|
+
"variant_title": null,
|
|
378
|
+
"vendor": null,
|
|
379
|
+
"tax_lines": [],
|
|
380
|
+
"duties": [],
|
|
381
|
+
"discount_allocations": []
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"id": 315789986012684400,
|
|
385
|
+
"admin_graphql_api_id": "gid://shopify/LineItem/315789986012684393",
|
|
386
|
+
"attributed_staffs": [],
|
|
387
|
+
"current_quantity": 1,
|
|
388
|
+
"fulfillable_quantity": 1,
|
|
389
|
+
"fulfillment_service": "manual",
|
|
390
|
+
"fulfillment_status": null,
|
|
391
|
+
"gift_card": false,
|
|
392
|
+
"grams": 500,
|
|
393
|
+
"name": "Coffee table",
|
|
394
|
+
"price": "119.99",
|
|
395
|
+
"price_set": {
|
|
396
|
+
"shop_money": {
|
|
397
|
+
"amount": "119.99",
|
|
398
|
+
"currency_code": "USD"
|
|
399
|
+
},
|
|
400
|
+
"presentment_money": {
|
|
401
|
+
"amount": "119.99",
|
|
402
|
+
"currency_code": "USD"
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"product_exists": true,
|
|
406
|
+
"product_id": 788032119674292900,
|
|
407
|
+
"properties": [],
|
|
408
|
+
"quantity": 1,
|
|
409
|
+
"requires_shipping": true,
|
|
410
|
+
"sales_line_item_group_id": 142831562,
|
|
411
|
+
"sku": "SKU2006-035",
|
|
362
412
|
"taxable": true,
|
|
363
|
-
"title": "
|
|
413
|
+
"title": "Coffee table",
|
|
364
414
|
"total_discount": "0.00",
|
|
365
415
|
"total_discount_set": {
|
|
366
416
|
"shop_money": {
|
|
@@ -372,8 +422,8 @@
|
|
|
372
422
|
"currency_code": "USD"
|
|
373
423
|
}
|
|
374
424
|
},
|
|
375
|
-
"variant_id":
|
|
376
|
-
"variant_inventory_management":
|
|
425
|
+
"variant_id": null,
|
|
426
|
+
"variant_inventory_management": null,
|
|
377
427
|
"variant_title": null,
|
|
378
428
|
"vendor": null,
|
|
379
429
|
"tax_lines": [],
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"currency_code": "USD"
|
|
44
44
|
}
|
|
45
45
|
},
|
|
46
|
-
"current_subtotal_price": "
|
|
46
|
+
"current_subtotal_price": "369.97",
|
|
47
47
|
"current_subtotal_price_set": {
|
|
48
48
|
"shop_money": {
|
|
49
|
-
"amount": "
|
|
49
|
+
"amount": "369.97",
|
|
50
50
|
"currency_code": "USD"
|
|
51
51
|
},
|
|
52
52
|
"presentment_money": {
|
|
53
|
-
"amount": "
|
|
53
|
+
"amount": "369.97",
|
|
54
54
|
"currency_code": "USD"
|
|
55
55
|
}
|
|
56
56
|
},
|
|
@@ -67,14 +67,14 @@
|
|
|
67
67
|
}
|
|
68
68
|
},
|
|
69
69
|
"current_total_duties_set": null,
|
|
70
|
-
"current_total_price": "
|
|
70
|
+
"current_total_price": "369.97",
|
|
71
71
|
"current_total_price_set": {
|
|
72
72
|
"shop_money": {
|
|
73
|
-
"amount": "
|
|
73
|
+
"amount": "369.97",
|
|
74
74
|
"currency_code": "USD"
|
|
75
75
|
},
|
|
76
76
|
"presentment_money": {
|
|
77
|
-
"amount": "
|
|
77
|
+
"amount": "369.97",
|
|
78
78
|
"currency_code": "USD"
|
|
79
79
|
}
|
|
80
80
|
},
|
|
@@ -123,14 +123,14 @@
|
|
|
123
123
|
"source_identifier": null,
|
|
124
124
|
"source_name": "web",
|
|
125
125
|
"source_url": null,
|
|
126
|
-
"subtotal_price": "
|
|
126
|
+
"subtotal_price": "359.97",
|
|
127
127
|
"subtotal_price_set": {
|
|
128
128
|
"shop_money": {
|
|
129
|
-
"amount": "
|
|
129
|
+
"amount": "359.97",
|
|
130
130
|
"currency_code": "USD"
|
|
131
131
|
},
|
|
132
132
|
"presentment_money": {
|
|
133
|
-
"amount": "
|
|
133
|
+
"amount": "359.97",
|
|
134
134
|
"currency_code": "USD"
|
|
135
135
|
}
|
|
136
136
|
},
|
|
@@ -171,26 +171,26 @@
|
|
|
171
171
|
"currency_code": "USD"
|
|
172
172
|
}
|
|
173
173
|
},
|
|
174
|
-
"total_line_items_price": "
|
|
174
|
+
"total_line_items_price": "369.97",
|
|
175
175
|
"total_line_items_price_set": {
|
|
176
176
|
"shop_money": {
|
|
177
|
-
"amount": "
|
|
177
|
+
"amount": "369.97",
|
|
178
178
|
"currency_code": "USD"
|
|
179
179
|
},
|
|
180
180
|
"presentment_money": {
|
|
181
|
-
"amount": "
|
|
181
|
+
"amount": "369.97",
|
|
182
182
|
"currency_code": "USD"
|
|
183
183
|
}
|
|
184
184
|
},
|
|
185
|
-
"total_outstanding": "
|
|
186
|
-
"total_price": "
|
|
185
|
+
"total_outstanding": "369.97",
|
|
186
|
+
"total_price": "359.97",
|
|
187
187
|
"total_price_set": {
|
|
188
188
|
"shop_money": {
|
|
189
|
-
"amount": "
|
|
189
|
+
"amount": "359.97",
|
|
190
190
|
"currency_code": "USD"
|
|
191
191
|
},
|
|
192
192
|
"presentment_money": {
|
|
193
|
-
"amount": "
|
|
193
|
+
"amount": "359.97",
|
|
194
194
|
"currency_code": "USD"
|
|
195
195
|
}
|
|
196
196
|
},
|
|
@@ -276,8 +276,8 @@
|
|
|
276
276
|
"fulfillments": [],
|
|
277
277
|
"line_items": [
|
|
278
278
|
{
|
|
279
|
-
"id":
|
|
280
|
-
"admin_graphql_api_id": "gid://shopify/LineItem/
|
|
279
|
+
"id": 487817672276298560,
|
|
280
|
+
"admin_graphql_api_id": "gid://shopify/LineItem/487817672276298554",
|
|
281
281
|
"attributed_staffs": [
|
|
282
282
|
{
|
|
283
283
|
"id": "gid://shopify/StaffMember/902541635",
|
|
@@ -289,28 +289,28 @@
|
|
|
289
289
|
"fulfillment_service": "manual",
|
|
290
290
|
"fulfillment_status": null,
|
|
291
291
|
"gift_card": false,
|
|
292
|
-
"grams":
|
|
293
|
-
"name": "
|
|
294
|
-
"price": "
|
|
292
|
+
"grams": 100,
|
|
293
|
+
"name": "Aviator sunglasses",
|
|
294
|
+
"price": "89.99",
|
|
295
295
|
"price_set": {
|
|
296
296
|
"shop_money": {
|
|
297
|
-
"amount": "
|
|
297
|
+
"amount": "89.99",
|
|
298
298
|
"currency_code": "USD"
|
|
299
299
|
},
|
|
300
300
|
"presentment_money": {
|
|
301
|
-
"amount": "
|
|
301
|
+
"amount": "89.99",
|
|
302
302
|
"currency_code": "USD"
|
|
303
303
|
}
|
|
304
304
|
},
|
|
305
305
|
"product_exists": true,
|
|
306
|
-
"product_id":
|
|
306
|
+
"product_id": 788032119674292900,
|
|
307
307
|
"properties": [],
|
|
308
308
|
"quantity": 1,
|
|
309
309
|
"requires_shipping": true,
|
|
310
310
|
"sales_line_item_group_id": null,
|
|
311
|
-
"sku": "
|
|
311
|
+
"sku": "SKU2006-001",
|
|
312
312
|
"taxable": true,
|
|
313
|
-
"title": "
|
|
313
|
+
"title": "Aviator sunglasses",
|
|
314
314
|
"total_discount": "0.00",
|
|
315
315
|
"total_discount_set": {
|
|
316
316
|
"shop_money": {
|
|
@@ -322,8 +322,8 @@
|
|
|
322
322
|
"currency_code": "USD"
|
|
323
323
|
}
|
|
324
324
|
},
|
|
325
|
-
"variant_id":
|
|
326
|
-
"variant_inventory_management":
|
|
325
|
+
"variant_id": null,
|
|
326
|
+
"variant_inventory_management": null,
|
|
327
327
|
"variant_title": null,
|
|
328
328
|
"vendor": null,
|
|
329
329
|
"tax_lines": [],
|
|
@@ -331,36 +331,86 @@
|
|
|
331
331
|
"discount_allocations": []
|
|
332
332
|
},
|
|
333
333
|
{
|
|
334
|
-
"id":
|
|
335
|
-
"admin_graphql_api_id": "gid://shopify/LineItem/
|
|
334
|
+
"id": 976318377106520300,
|
|
335
|
+
"admin_graphql_api_id": "gid://shopify/LineItem/976318377106520349",
|
|
336
336
|
"attributed_staffs": [],
|
|
337
337
|
"current_quantity": 1,
|
|
338
338
|
"fulfillable_quantity": 1,
|
|
339
339
|
"fulfillment_service": "manual",
|
|
340
340
|
"fulfillment_status": null,
|
|
341
341
|
"gift_card": false,
|
|
342
|
-
"grams":
|
|
343
|
-
"name": "
|
|
344
|
-
"price": "
|
|
342
|
+
"grams": 1000,
|
|
343
|
+
"name": "Mid-century lounger",
|
|
344
|
+
"price": "159.99",
|
|
345
345
|
"price_set": {
|
|
346
346
|
"shop_money": {
|
|
347
|
-
"amount": "
|
|
347
|
+
"amount": "159.99",
|
|
348
348
|
"currency_code": "USD"
|
|
349
349
|
},
|
|
350
350
|
"presentment_money": {
|
|
351
|
-
"amount": "
|
|
351
|
+
"amount": "159.99",
|
|
352
352
|
"currency_code": "USD"
|
|
353
353
|
}
|
|
354
354
|
},
|
|
355
355
|
"product_exists": true,
|
|
356
|
-
"product_id":
|
|
356
|
+
"product_id": 788032119674292900,
|
|
357
357
|
"properties": [],
|
|
358
358
|
"quantity": 1,
|
|
359
359
|
"requires_shipping": true,
|
|
360
|
-
"sales_line_item_group_id":
|
|
361
|
-
"sku": "
|
|
360
|
+
"sales_line_item_group_id": 142831562,
|
|
361
|
+
"sku": "SKU2006-020",
|
|
362
|
+
"taxable": true,
|
|
363
|
+
"title": "Mid-century lounger",
|
|
364
|
+
"total_discount": "0.00",
|
|
365
|
+
"total_discount_set": {
|
|
366
|
+
"shop_money": {
|
|
367
|
+
"amount": "0.00",
|
|
368
|
+
"currency_code": "USD"
|
|
369
|
+
},
|
|
370
|
+
"presentment_money": {
|
|
371
|
+
"amount": "0.00",
|
|
372
|
+
"currency_code": "USD"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"variant_id": null,
|
|
376
|
+
"variant_inventory_management": null,
|
|
377
|
+
"variant_title": null,
|
|
378
|
+
"vendor": null,
|
|
379
|
+
"tax_lines": [],
|
|
380
|
+
"duties": [],
|
|
381
|
+
"discount_allocations": []
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"id": 315789986012684400,
|
|
385
|
+
"admin_graphql_api_id": "gid://shopify/LineItem/315789986012684393",
|
|
386
|
+
"attributed_staffs": [],
|
|
387
|
+
"current_quantity": 1,
|
|
388
|
+
"fulfillable_quantity": 1,
|
|
389
|
+
"fulfillment_service": "manual",
|
|
390
|
+
"fulfillment_status": null,
|
|
391
|
+
"gift_card": false,
|
|
392
|
+
"grams": 500,
|
|
393
|
+
"name": "Coffee table",
|
|
394
|
+
"price": "119.99",
|
|
395
|
+
"price_set": {
|
|
396
|
+
"shop_money": {
|
|
397
|
+
"amount": "119.99",
|
|
398
|
+
"currency_code": "USD"
|
|
399
|
+
},
|
|
400
|
+
"presentment_money": {
|
|
401
|
+
"amount": "119.99",
|
|
402
|
+
"currency_code": "USD"
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"product_exists": true,
|
|
406
|
+
"product_id": 788032119674292900,
|
|
407
|
+
"properties": [],
|
|
408
|
+
"quantity": 1,
|
|
409
|
+
"requires_shipping": true,
|
|
410
|
+
"sales_line_item_group_id": 142831562,
|
|
411
|
+
"sku": "SKU2006-035",
|
|
362
412
|
"taxable": true,
|
|
363
|
-
"title": "
|
|
413
|
+
"title": "Coffee table",
|
|
364
414
|
"total_discount": "0.00",
|
|
365
415
|
"total_discount_set": {
|
|
366
416
|
"shop_money": {
|
|
@@ -372,8 +422,8 @@
|
|
|
372
422
|
"currency_code": "USD"
|
|
373
423
|
}
|
|
374
424
|
},
|
|
375
|
-
"variant_id":
|
|
376
|
-
"variant_inventory_management":
|
|
425
|
+
"variant_id": null,
|
|
426
|
+
"variant_inventory_management": null,
|
|
377
427
|
"variant_title": null,
|
|
378
428
|
"vendor": null,
|
|
379
429
|
"tax_lines": [],
|