chore(docs): Generated DML JSON files (automated) (#14180)
This PR holds all generated DML JSON files for the upcoming release. --- > [!NOTE] > Updates generated DML JSONs with new fields and a renamed relation across fulfillment, notification, order, and promotion modules. > > - **Fulfillment**: > - `ShippingOptionType`: rename `shipping_option` to `shipping_options` (expandable). > - **Notification**: > - `Notification`: add `from` and `provider_data` fields. > - **Order**: > - `OrderLineItemAdjustment`: add `version`. > - `Order`: add `custom_display_id`. > - `OrderChange`: add `carry_over_promotions` (since v2.12.0). > - **Promotion**: > - `Promotion`: add `limit`, `used`, and `metadata` (since v2.12.0). > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 4494c93c2d7bc05cfec47fb1b77f7c4c16383f2b. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com> Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
725b3991b2
commit
fa7bf50077
@@ -121,7 +121,7 @@
|
||||
"label": "The label of the shipping option type",
|
||||
"description": "The description of the shipping option type",
|
||||
"code": "The code of the shipping option type",
|
||||
"shipping_option": "The associated shipping option.\n\n@expandable"
|
||||
"shipping_options": "The associated shipping options.\n\n@expandable"
|
||||
},
|
||||
"deprecated": {
|
||||
"is_deprecated": false
|
||||
|
||||
@@ -29,7 +29,9 @@
|
||||
"idempotency_key": "The idempotency key of the notification.",
|
||||
"external_id": "The id of the notification in the external system.",
|
||||
"provider": "The associated provider used to send the notification.\n\n@expandable",
|
||||
"status": "The status of the notification"
|
||||
"status": "The status of the notification",
|
||||
"from": "The address, number, or general user identifier to send the notification from",
|
||||
"provider_data": "Data relevant to the provider used to send the notification"
|
||||
},
|
||||
"deprecated": {
|
||||
"is_deprecated": false
|
||||
|
||||
@@ -42,7 +42,8 @@
|
||||
"amount": "The amount of the adjustment",
|
||||
"provider_id": "The ID of the provider used to apply the adjustment.",
|
||||
"item": "The associated item that the adjustment is applied on.\n\n@expandable",
|
||||
"is_tax_inclusive": "Whether the order line item adjustment is tax inclusive."
|
||||
"is_tax_inclusive": "Whether the order line item adjustment is tax inclusive.",
|
||||
"version": "The version of the order line item adjustment"
|
||||
},
|
||||
"deprecated": {
|
||||
"is_deprecated": false
|
||||
@@ -365,7 +366,8 @@
|
||||
"shipping_methods": "The associated shipping methods.\n\n@expandable",
|
||||
"transactions": "The associated transactions, which include amounts captured and refunded.\n\n@expandable",
|
||||
"credit_lines": "The associated credit lines, which include additional payment amounts for an order.\n\n@expandable",
|
||||
"returns": "The associated returns.\n\n@expandable"
|
||||
"returns": "The associated returns.\n\n@expandable",
|
||||
"custom_display_id": "The custom display ID of the order"
|
||||
},
|
||||
"deprecated": {
|
||||
"is_deprecated": false
|
||||
@@ -441,7 +443,8 @@
|
||||
"canceled_by": "The ID of the user that canceled the order change",
|
||||
"canceled_at": "The date that the change was canceled",
|
||||
"order": "The associated order that the change applies to.\n\n@expandable",
|
||||
"actions": "The associated actions.\n\n@expandable"
|
||||
"actions": "The associated actions.\n\n@expandable",
|
||||
"carry_over_promotions": "Whether the order change carries over promotions from the parent order.\n\n@since v2.12.0"
|
||||
},
|
||||
"deprecated": {
|
||||
"is_deprecated": false
|
||||
|
||||
@@ -69,7 +69,10 @@
|
||||
"application_method": "The associated application method.\n\n@expandable",
|
||||
"rules": "The associated rules.\n\n@expandable",
|
||||
"status": "The status of the promotion",
|
||||
"is_tax_inclusive": "Whether the promotion is tax inclusive."
|
||||
"is_tax_inclusive": "Whether the promotion is tax inclusive.",
|
||||
"limit": "The limit of the promotion\n\n@since v2.12.0",
|
||||
"used": "How much of the limit has been used.\n\n@since v2.12.0",
|
||||
"metadata": "Holds custom data in key-value pairs.\n\n@since v2.12.0"
|
||||
},
|
||||
"deprecated": {
|
||||
"is_deprecated": false
|
||||
|
||||
Reference in New Issue
Block a user